lol

ocamlbuild: 0.9.2 -> 0.9.3

authored by

Vincent Laporte and committed by
vbgl
42a0fc43 77050a83

+10 -16
+10 -16
pkgs/development/tools/ocaml/ocamlbuild/default.nix
··· 1 1 {stdenv, fetchFromGitHub, ocaml, findlib, buildOcaml, type_conv, camlp4, 2 2 ocamlmod, ocamlify, ounit, expect}: 3 3 let 4 - version = "0.9.2"; 4 + version = "0.9.3"; 5 5 in 6 6 stdenv.mkDerivation { 7 - name = "ocamlbuild"; 7 + name = "ocamlbuild-${version}"; 8 8 inherit version; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "ocaml"; 12 12 repo = "ocamlbuild"; 13 13 rev = version; 14 - sha256 = "0q4bvik08v444g1pill9zgwal48xs50jf424lbryfvqghhw5xjjc"; 14 + sha256 = "1ikm51lx4jz5vmbvrdwsm5p59bwbz3pi22vqkyz5lmqcciyn69i3"; 15 15 }; 16 16 17 17 createFindlibDestdir = true; ··· 25 25 "OCAMLBUILD_LIBDIR=$OCAMLFIND_DESTDIR" 26 26 ''; 27 27 28 - # configurePhase = "ocaml setup.ml -configure --prefix $out"; 29 - # buildPhase = "ocaml setup.ml -build"; 30 - # installPhase = "ocaml setup.ml -install"; 31 - 32 - # meta = with stdenv.lib; { 33 - # homepage = http://oasis.forge.ocamlcore.org/; 34 - # description = "Configure, build and install system for OCaml projects"; 35 - # license = licenses.lgpl21; 36 - # platforms = ocaml.meta.platforms or []; 37 - # maintainers = with maintainers; [ 38 - # vbgl z77z 39 - # ]; 40 - # }; 28 + meta = with stdenv.lib; { 29 + homepage = https://github.com/ocaml/ocamlbuild/; 30 + description = "A build system with builtin rules to easily build most OCaml projects"; 31 + license = licenses.lgpl2; 32 + inherit (ocaml.meta) platforms; 33 + maintainers = with maintainers; [ vbgl ]; 34 + }; 41 35 } 42 36