Merge branch 'master' into staging

Hydra: ?compare=1400181
This commit is contained in:
Vladimír Čunát
2017-10-09 11:24:35 +02:00
30 changed files with 448 additions and 48 deletions

View File

@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
description = "A hierarchical command-line task manager";
license = licenses.gpl2;
maintainers = [ maintainers.woffs ];
platforms = platforms.all;
platforms = platforms.linux;
};
}

View File

@@ -1,6 +1,4 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, camlp4
, ocaml_data_notation, type_conv, ocamlmod, ocamlify, ounit, expect
}:
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, ocamlmod, ocamlify }:
stdenv.mkDerivation rec {
version = "0.4.10";
@@ -17,11 +15,9 @@ stdenv.mkDerivation rec {
buildInputs =
[
ocaml findlib ocamlbuild type_conv ocamlmod ocamlify ounit camlp4
ocaml findlib ocamlbuild ocamlmod ocamlify
];
propagatedBuildInputs = [ ocaml_data_notation ];
configurePhase = "ocaml setup.ml -configure --prefix $out";
buildPhase = "ocaml setup.ml -build";
installPhase = "ocaml setup.ml -install";