mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 05:54:24 +00:00
26 lines
722 B
Nix
26 lines
722 B
Nix
{ lib, stdenv, fetchFromGitHub, opam-installer, ocamlPackages }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "opam2json";
|
|
version = "0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tweag";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "fe8bm/V/4r2iNxgbitT2sXBqDHQ0GBSnSUSBg/1aXoI=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|