summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2018-07-10 20:26:52 -0500
committerVincent Laporte <vbgl@users.noreply.github.com>2018-07-14 11:11:45 +0000
commit4d6ad88fe237e27cdcc0db206e7dc85d6f8c1d82 (patch)
tree93c2753bf2f5135e46522a120c32487fb392c4ac /pkgs/development/tools/ocaml
parente8ec91bb5954dcb2a915c86821b5f6421f4d36d7 (diff)
downloadnixlib-4d6ad88fe237e27cdcc0db206e7dc85d6f8c1d82.tar
nixlib-4d6ad88fe237e27cdcc0db206e7dc85d6f8c1d82.tar.gz
nixlib-4d6ad88fe237e27cdcc0db206e7dc85d6f8c1d82.tar.bz2
nixlib-4d6ad88fe237e27cdcc0db206e7dc85d6f8c1d82.tar.lz
nixlib-4d6ad88fe237e27cdcc0db206e7dc85d6f8c1d82.tar.xz
nixlib-4d6ad88fe237e27cdcc0db206e7dc85d6f8c1d82.tar.zst
nixlib-4d6ad88fe237e27cdcc0db206e7dc85d6f8c1d82.zip
jbuilder: 1.0+beta20 -> 1.0.0
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/jbuilder/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/ocaml/jbuilder/default.nix b/pkgs/development/tools/ocaml/jbuilder/default.nix
index abfcdb61c1e6..142a30eba8da 100644
--- a/pkgs/development/tools/ocaml/jbuilder/default.nix
+++ b/pkgs/development/tools/ocaml/jbuilder/default.nix
@@ -2,12 +2,12 @@
 
 stdenv.mkDerivation rec {
   name = "jbuilder-${version}";
-  version = "1.0+beta20";
+  version = "1.0.0";
   src = fetchFromGitHub {
     owner = "ocaml";
     repo = "dune";
     rev = "${version}";
-    sha256 = "0571lzm8caq6wnia7imgy4a27x5l2bvxiflg0jrwwml0ylnii65f";
+    sha256 = "08gb7l2rrfrsqvigna1cvvphww80zlvj7lqvaj4m4y9llanmnxcg";
   };
 
   buildInputs = with ocamlPackages; [ ocaml findlib ];
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   preFixup = "rm -rf $out/jbuilder";
 
   meta = {
-    homepage = https://github.com/janestreet/jbuilder;
+    inherit (src.meta) homepage;
     description = "Fast, portable and opinionated build system";
     maintainers = [ stdenv.lib.maintainers.vbgl ];
     license = stdenv.lib.licenses.asl20;