summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cmdliner
diff options
context:
space:
mode:
authorromildo <malaquias@gmail.com>2017-05-31 16:22:35 -0300
committerromildo <malaquias@gmail.com>2017-05-31 17:01:29 -0300
commit61b8fddf5251e418eda3e93d63a0a608e56cc848 (patch)
tree2a1bfcd456748de2886a74abe7764b67999090a4 /pkgs/development/ocaml-modules/cmdliner
parent32e12ff4ed94797960a842410ca96dc2c29bc97b (diff)
downloadnixpkgs-61b8fddf5251e418eda3e93d63a0a608e56cc848.tar
nixpkgs-61b8fddf5251e418eda3e93d63a0a608e56cc848.tar.gz
nixpkgs-61b8fddf5251e418eda3e93d63a0a608e56cc848.tar.bz2
nixpkgs-61b8fddf5251e418eda3e93d63a0a608e56cc848.tar.lz
nixpkgs-61b8fddf5251e418eda3e93d63a0a608e56cc848.tar.xz
nixpkgs-61b8fddf5251e418eda3e93d63a0a608e56cc848.tar.zst
nixpkgs-61b8fddf5251e418eda3e93d63a0a608e56cc848.zip
cmdliner: 1.0.0 -> 0.9.8
Downgrade to version 0.9.8 because the new version 1.0.0 breaks API and
some pacakges do not yet compile with it.
Diffstat (limited to 'pkgs/development/ocaml-modules/cmdliner')
-rw-r--r--pkgs/development/ocaml-modules/cmdliner/default.nix21
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/ocaml-modules/cmdliner/default.nix b/pkgs/development/ocaml-modules/cmdliner/default.nix
index 9448610a378..e8824f31807 100644
--- a/pkgs/development/ocaml-modules/cmdliner/default.nix
+++ b/pkgs/development/ocaml-modules/cmdliner/default.nix
@@ -1,33 +1,30 @@
-{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, result }:
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam }:
 
 let
   pname = "cmdliner";
 in
 
-assert stdenv.lib.versionAtLeast ocaml.version "4.01.0";
+assert stdenv.lib.versionAtLeast ocaml.version "3.12";
 
 stdenv.mkDerivation rec {
+
   name = "ocaml-${pname}-${version}";
-  version = "1.0.0";
+  version = "0.9.8";
 
   src = fetchurl {
     url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
-    sha256 = "1ryn7qis0izg0wcal8zdlikzzl689l75y6f4zc6blrm93y5agy9x";
+    sha256 = "0hdxlkgiwjml9dpaa80282a8350if7mc1m6yz2mrd7gci3fszykx";
   };
 
   unpackCmd = "tar xjf $src";
-
-  nativeBuildInputs = [ ocamlbuild opam topkg ];
+  nativeBuildInputs = [ ocamlbuild opam ];
   buildInputs = [ ocaml findlib ];
-  propagatedBuildInputs = [ result ];
 
   createFindlibDestdir = true;
 
-  buildPhase = ''
-    ocaml -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib pkg/pkg.ml build
-  '';
-
-  installPhase = ''
+  configurePhase = "ocaml pkg/git.ml";
+  buildPhase     = "ocaml pkg/build.ml native=true native-dynlink=true";
+  installPhase   = ''
     opam-installer --script --prefix=$out | sh
     ln -s $out/lib/${pname} $out/lib/ocaml/${ocaml.version}/site-lib/
   '';