mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 10:56:53 +00:00
26 lines
587 B
Nix
26 lines
587 B
Nix
|
{ stdenv, fetchFromGitHub, ocaml, findlib, qtest, ounit }:
|
||
|
|
||
|
let version = "0.3"; in
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "ocaml-gen-${version}";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "c-cube";
|
||
|
repo = "gen";
|
||
|
rev = "${version}";
|
||
|
sha256 = "0xrnkcfa5q86ammf49j5hynw5563x5sa2mk7vqf7g097j1szif72";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ ocaml findlib qtest ounit ];
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|