summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/ocamlbuild
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-12-04 11:25:37 +0000
committervbgl <vbgl@users.noreply.github.com>2016-12-12 03:18:48 +0000
commit42a0fc438755b84fc2bb09fe5733238dccebe0fe (patch)
tree7c5ed0d8b4d9e8dfe499c64e7aee307903a24851 /pkgs/development/tools/ocaml/ocamlbuild
parent77050a83816e11f2af2cd2115c5cd1937caa8068 (diff)
downloadnixpkgs-42a0fc438755b84fc2bb09fe5733238dccebe0fe.tar
nixpkgs-42a0fc438755b84fc2bb09fe5733238dccebe0fe.tar.gz
nixpkgs-42a0fc438755b84fc2bb09fe5733238dccebe0fe.tar.bz2
nixpkgs-42a0fc438755b84fc2bb09fe5733238dccebe0fe.tar.lz
nixpkgs-42a0fc438755b84fc2bb09fe5733238dccebe0fe.tar.xz
nixpkgs-42a0fc438755b84fc2bb09fe5733238dccebe0fe.tar.zst
nixpkgs-42a0fc438755b84fc2bb09fe5733238dccebe0fe.zip
ocamlbuild: 0.9.2 -> 0.9.3
Diffstat (limited to 'pkgs/development/tools/ocaml/ocamlbuild')
-rw-r--r--pkgs/development/tools/ocaml/ocamlbuild/default.nix26
1 files changed, 10 insertions, 16 deletions
diff --git a/pkgs/development/tools/ocaml/ocamlbuild/default.nix b/pkgs/development/tools/ocaml/ocamlbuild/default.nix
index 6feab7645f1..df6c66cb98f 100644
--- a/pkgs/development/tools/ocaml/ocamlbuild/default.nix
+++ b/pkgs/development/tools/ocaml/ocamlbuild/default.nix
@@ -1,17 +1,17 @@
 {stdenv, fetchFromGitHub, ocaml, findlib, buildOcaml, type_conv, camlp4,
  ocamlmod, ocamlify, ounit, expect}:
 let
-  version = "0.9.2";
+  version = "0.9.3";
 in
 stdenv.mkDerivation {
-  name = "ocamlbuild";
+  name = "ocamlbuild-${version}";
   inherit version;
 
   src = fetchFromGitHub {
     owner = "ocaml";
     repo = "ocamlbuild";
     rev = version;
-    sha256 = "0q4bvik08v444g1pill9zgwal48xs50jf424lbryfvqghhw5xjjc";
+    sha256 = "1ikm51lx4jz5vmbvrdwsm5p59bwbz3pi22vqkyz5lmqcciyn69i3";
   };
 
   createFindlibDestdir = true;
@@ -25,18 +25,12 @@ stdenv.mkDerivation {
     "OCAMLBUILD_LIBDIR=$OCAMLFIND_DESTDIR"
   '';
 
-  # configurePhase = "ocaml setup.ml -configure --prefix $out";
-  # buildPhase     = "ocaml setup.ml -build";
-  # installPhase   = "ocaml setup.ml -install";
-
-  # meta = with stdenv.lib; {
-  #   homepage = http://oasis.forge.ocamlcore.org/;
-  #   description = "Configure, build and install system for OCaml projects";
-  #   license = licenses.lgpl21;
-  #   platforms = ocaml.meta.platforms or [];
-  #   maintainers = with maintainers; [
-  #     vbgl z77z
-  #   ];
-  # };
+  meta = with stdenv.lib; {
+    homepage = https://github.com/ocaml/ocamlbuild/;
+    description = "A build system with builtin rules to easily build most OCaml projects";
+    license = licenses.lgpl2;
+    inherit (ocaml.meta) platforms;
+    maintainers = with maintainers; [ vbgl ];
+  };
 }