forked from mirrors/nixpkgs
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
51 lines
1 KiB
Nix
51 lines
1 KiB
Nix
{ lib, fetchurl, stdenv, ocaml, ocamlbuild, findlib, extlib, glib, perl, pkg-config, stdlib-shims, ounit }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ocaml${ocaml.version}-cudf";
|
|
version = "0.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://gforge.inria.fr/frs/download.php/36602/cudf-0.9.tar.gz";
|
|
sha256 = "sha256-mTLk2V3OI1sUNIYv84nM3reiirf0AuozG5ZzLCmn4Rw=";
|
|
};
|
|
|
|
buildFlags = [
|
|
"all"
|
|
"opt"
|
|
];
|
|
nativeBuildInputs = [
|
|
findlib
|
|
ocaml
|
|
ocamlbuild
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
glib
|
|
perl
|
|
stdlib-shims
|
|
];
|
|
propagatedBuildInputs = [
|
|
extlib
|
|
];
|
|
|
|
checkTarget = [
|
|
"all"
|
|
"test"
|
|
];
|
|
nativeCheckInputs = [
|
|
ounit
|
|
];
|
|
doCheck = true;
|
|
|
|
preInstall = "mkdir -p $OCAMLFIND_DESTDIR";
|
|
installFlags = [ "BINDIR=$(out)/bin" ];
|
|
|
|
meta = with lib; {
|
|
description = "A library for CUDF format";
|
|
homepage = "https://www.mancoosi.org/cudf/";
|
|
downloadPage = "https://gforge.inria.fr/projects/cudf/";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|