1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/ocaml-modules/ounit/default.nix

31 lines
698 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, camlp4 }:
stdenv.mkDerivation {
2014-01-14 11:24:26 -05:00
name = "ounit-2.0.0";
src = fetchurl {
url = https://forge.ocamlcore.org/frs/download.php/1258/ounit-2.0.0.tar.gz;
sha256 = "118xsadrx84pif9vaq13hv4yh22w9kmr0ypvhrs0viir1jr0ajjd";
};
buildInputs = [ ocaml findlib ocamlbuild camlp4 ];
dontAddPrefix = true;
doCheck = true;
checkTarget = "test";
createFindlibDestdir = true;
meta = {
2015-04-02 09:45:13 -04:00
homepage = http://ounit.forge.ocamlcore.org/;
description = "Unit test framework for OCaml";
2012-09-12 15:23:33 -04:00
license = stdenv.lib.licenses.mit;
platforms = ocaml.meta.platforms or [];
maintainers = [
stdenv.lib.maintainers.z77z
];
};
}