about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ounit/default.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-12-11 12:47:00 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-12-11 12:47:00 +0000
commitee04ffcb550809f7d97d709ff4ec709a21b30ab9 (patch)
tree470bdb3f97b0ab18d3abeec3e1f59db7a4af34ed /pkgs/development/ocaml-modules/ounit/default.nix
parent3f1a32c266f792290cb08c45ab40f22a43cb13cb (diff)
parent97d4a54698a4dea4b57ec4124591d75a740ee44e (diff)
downloadnixlib-ee04ffcb550809f7d97d709ff4ec709a21b30ab9.tar
nixlib-ee04ffcb550809f7d97d709ff4ec709a21b30ab9.tar.gz
nixlib-ee04ffcb550809f7d97d709ff4ec709a21b30ab9.tar.bz2
nixlib-ee04ffcb550809f7d97d709ff4ec709a21b30ab9.tar.lz
nixlib-ee04ffcb550809f7d97d709ff4ec709a21b30ab9.tar.xz
nixlib-ee04ffcb550809f7d97d709ff4ec709a21b30ab9.tar.zst
nixlib-ee04ffcb550809f7d97d709ff4ec709a21b30ab9.zip
Updating from trunk. I resolved simple conflicts.
svn path=/nixpkgs/branches/stdenv-updates/; revision=25061
Diffstat (limited to 'pkgs/development/ocaml-modules/ounit/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/ounit/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/ounit/default.nix b/pkgs/development/ocaml-modules/ounit/default.nix
new file mode 100644
index 000000000000..af208dc5651c
--- /dev/null
+++ b/pkgs/development/ocaml-modules/ounit/default.nix
@@ -0,0 +1,31 @@
+{stdenv, fetchurl, ocaml, findlib}:
+
+let
+  ocaml_version = (builtins.parseDrvName ocaml.name).version;
+  version = "1.0.3";
+in
+
+stdenv.mkDerivation {
+  name = "ounit-${version}";
+
+  src = fetchurl {
+    url = "http://www.xs4all.nl/~mmzeeman/ocaml/ounit-${version}.tar.gz";
+    sha256 = "1n7ylrbi2m00gn0kjg5zxnyzxki8v1dy31fcz3vh1xnwcx6hii97";
+  };
+
+  buildInputs = [ocaml findlib];
+
+  configurePhase = "true";  	# Skip configure
+
+  buildFlags = "all allopt";
+
+  doCheck = true;
+
+  checkTarget = "test";
+
+  meta = {
+    homepage = http://www.xs4all.nl/~mmzeeman/ocaml/;
+    description = "Unit test framework for OCaml";
+    license = "MIT/X11";
+  };
+}