ocamlbuild: 0.9.2 -> 0.9.3

This commit is contained in:
Vincent Laporte 2016-12-04 11:25:37 +00:00 committed by vbgl
parent 77050a8381
commit 42a0fc4387
1 changed files with 10 additions and 16 deletions

View File

@ -1,17 +1,17 @@
{stdenv, fetchFromGitHub, ocaml, findlib, buildOcaml, type_conv, camlp4, {stdenv, fetchFromGitHub, ocaml, findlib, buildOcaml, type_conv, camlp4,
ocamlmod, ocamlify, ounit, expect}: ocamlmod, ocamlify, ounit, expect}:
let let
version = "0.9.2"; version = "0.9.3";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "ocamlbuild"; name = "ocamlbuild-${version}";
inherit version; inherit version;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ocaml"; owner = "ocaml";
repo = "ocamlbuild"; repo = "ocamlbuild";
rev = version; rev = version;
sha256 = "0q4bvik08v444g1pill9zgwal48xs50jf424lbryfvqghhw5xjjc"; sha256 = "1ikm51lx4jz5vmbvrdwsm5p59bwbz3pi22vqkyz5lmqcciyn69i3";
}; };
createFindlibDestdir = true; createFindlibDestdir = true;
@ -25,18 +25,12 @@ stdenv.mkDerivation {
"OCAMLBUILD_LIBDIR=$OCAMLFIND_DESTDIR" "OCAMLBUILD_LIBDIR=$OCAMLFIND_DESTDIR"
''; '';
# configurePhase = "ocaml setup.ml -configure --prefix $out"; meta = with stdenv.lib; {
# buildPhase = "ocaml setup.ml -build"; homepage = https://github.com/ocaml/ocamlbuild/;
# installPhase = "ocaml setup.ml -install"; description = "A build system with builtin rules to easily build most OCaml projects";
license = licenses.lgpl2;
# meta = with stdenv.lib; { inherit (ocaml.meta) platforms;
# homepage = http://oasis.forge.ocamlcore.org/; maintainers = with maintainers; [ vbgl ];
# description = "Configure, build and install system for OCaml projects"; };
# license = licenses.lgpl21;
# platforms = ocaml.meta.platforms or [];
# maintainers = with maintainers; [
# vbgl z77z
# ];
# };
} }