nixpkgs/pkgs/development/tools/ocaml/opam2json/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
729 B
Nix
Raw Normal View History

2022-07-16 10:43:23 +00:00
{ lib, stdenv, fetchFromGitHub, opam-installer, ocamlPackages }:
stdenv.mkDerivation rec {
pname = "opam2json";
2022-12-20 11:12:10 +00:00
version = "0.4";
2022-07-16 10:43:23 +00:00
src = fetchFromGitHub {
owner = "tweag";
repo = pname;
rev = "v${version}";
2022-12-20 11:12:10 +00:00
sha256 = "sha256-5pXfbUfpVABtKbii6aaI2EdAZTjHJ2QntEf0QD2O5AM=";
2022-07-16 10:43:23 +00:00
};
buildInputs = with ocamlPackages; [ yojson opam-file-format cmdliner ];
nativeBuildInputs = with ocamlPackages; [ ocaml findlib opam-installer ];
preInstall = ''export PREFIX="$out"'';
meta = with lib; {
platforms = platforms.all;
description = "convert opam file syntax to JSON";
maintainers = [ maintainers.balsoft ];
license = licenses.gpl3;
homepage = "https://github.com/tweag/opam2json";
};
}