nixpkgs/pkgs/development/ocaml-modules/optcomp/default.nix

26 lines
597 B
Nix
Raw Normal View History

{stdenv, fetchurl, ocaml, findlib, camlp4}:
2014-05-17 10:51:18 +00:00
stdenv.mkDerivation {
2015-06-04 17:22:36 +00:00
name = "ocaml-optcomp-1.6";
2014-05-17 10:51:18 +00:00
src = fetchurl {
url = https://github.com/diml/optcomp/archive/1.6.tar.gz;
md5 = "d3587244dba1b8b10f24d0b60a8c700d";
};
createFindlibDestdir = true;
buildInputs = [ocaml findlib camlp4];
2014-05-17 10:51:18 +00:00
meta = {
homepage = https://github.com/diml/optcomp;
description = "Optional compilation for OCaml with cpp-like directives";
license = stdenv.lib.licenses.bsd3;
2014-05-17 10:51:18 +00:00
platforms = ocaml.meta.platforms;
maintainers = [
stdenv.lib.maintainers.gal_bolle
];
};
}