summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2018-03-01 12:12:29 -0500
committerMatthew Maurer <matthew.r.maurer@gmail.com>2018-03-01 12:12:29 -0500
commit48cc8c2fffdae1724b8858e3ba2b7cf4018e1f00 (patch)
treed48c77e2381b6a1bde49f6a8354d5e6debcd5b90 /pkgs/development/tools/ocaml
parentaf6a83d01d15e99fe70b6284af7000606655749b (diff)
downloadnixpkgs-48cc8c2fffdae1724b8858e3ba2b7cf4018e1f00.tar
nixpkgs-48cc8c2fffdae1724b8858e3ba2b7cf4018e1f00.tar.gz
nixpkgs-48cc8c2fffdae1724b8858e3ba2b7cf4018e1f00.tar.bz2
nixpkgs-48cc8c2fffdae1724b8858e3ba2b7cf4018e1f00.tar.lz
nixpkgs-48cc8c2fffdae1724b8858e3ba2b7cf4018e1f00.tar.xz
nixpkgs-48cc8c2fffdae1724b8858e3ba2b7cf4018e1f00.tar.zst
nixpkgs-48cc8c2fffdae1724b8858e3ba2b7cf4018e1f00.zip
jbuilder: 1.0+beta18 -> 1.0+beta17
jbuilder beta 18 introduces a regression on the final link.
This is reflected in BAP 1.4
Rolling back one version until it's fixed.
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/jbuilder/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/jbuilder/default.nix b/pkgs/development/tools/ocaml/jbuilder/default.nix
index 2bfc832a0f0..d48bc410111 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+beta18";
+  version = "1.0+beta17";
   src = fetchFromGitHub {
     owner = "ocaml";
     repo = "dune";
     rev = "${version}";
-    sha256 = "1xw4i5qd2ndnddzb8b14fb52qxnjpr3lr9wx3mprv4f294kdg0l6";
+    sha256 = "04pyry459hp2r2s9m5xkcq1glzp20ddz5wb1w8nzp3zgygy0431x";
   };
 
   buildInputs = [ ocaml ];