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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
354 B
Nix
Raw Normal View History

2020-04-13 17:42:14 +03:00
{ stdenv, ocaml, findlib, ounit2 }:
stdenv.mkDerivation {
2020-04-13 17:42:14 +03:00
pname = "ocaml${ocaml.version}-ounit";
inherit (ounit2) version src meta;
nativeBuildInputs = [ findlib ];
2020-04-13 17:42:14 +03:00
propagatedBuildInputs = [ ounit2 ];
strictDeps = true;
2021-08-02 23:15:56 +03:00
dontBuild = true;
createFindlibDestdir = true;
2020-04-13 17:42:14 +03:00
installTargets = "install-ounit version='${ounit2.version}'";
}