1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/development/ocaml-modules/gen/default.nix

26 lines
636 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, qtest, ounit }:
2016-02-17 17:53:48 +00:00
2017-07-31 18:12:27 +01:00
let version = "0.4.0.1"; in
2016-02-17 17:53:48 +00:00
stdenv.mkDerivation {
2017-07-31 18:12:27 +01:00
name = "ocaml${ocaml.version}-gen-${version}";
2016-02-17 17:53:48 +00:00
src = fetchFromGitHub {
owner = "c-cube";
repo = "gen";
rev = "${version}";
2017-07-31 18:12:27 +01:00
sha256 = "0gg94f5l899rni3r7s7wq8plgazmbsaw498xckp25kkgpmkk61ml";
2016-02-17 17:53:48 +00:00
};
buildInputs = [ ocaml findlib ocamlbuild qtest ounit ];
2016-02-17 17:53:48 +00:00
createFindlibDestdir = true;
meta = {
homepage = https://github.com/c-cube/gen;
description = "Simple, efficient iterators for OCaml";
license = stdenv.lib.licenses.bsd3;
platforms = ocaml.meta.platforms or [];
2016-02-17 17:53:48 +00:00
};
}