nixpkgs/pkgs/development/ocaml-modules/janestreet/janePackage.nix

29 lines
759 B
Nix
Raw Normal View History

2018-09-05 16:11:47 +00:00
{ stdenv, fetchFromGitHub, ocaml, dune, findlib, defaultVersion ? "0.11.0" }:
2018-03-06 14:26:12 +00:00
{ name, version ? defaultVersion, buildInputs ? [], hash, meta, ...}@args:
2018-03-03 11:39:17 +00:00
if !stdenv.lib.versionAtLeast ocaml.version "4.04"
then throw "${name}-${version} is not available for OCaml ${ocaml.version}" else
stdenv.mkDerivation (args // {
name = "ocaml${ocaml.version}-${name}-${version}";
inherit version;
src = fetchFromGitHub {
owner = "janestreet";
repo = name;
rev = "v${version}";
sha256 = hash;
};
2018-09-05 16:11:47 +00:00
buildInputs = [ ocaml dune findlib ] ++ buildInputs;
2018-09-05 16:11:47 +00:00
inherit (dune) installPhase;
meta = {
license = stdenv.lib.licenses.asl20;
inherit (ocaml.meta) platforms;
homepage = "https://github.com/janestreet/${name}";
} // meta;
})