summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2017-01-25 02:04:19 -0500
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-03-28 20:04:00 +0000
commit03568b327e04ea07faac58a1d3466a537e508a3f (patch)
treefd560861947e52a124e851765d9b306d3a4125e5 /pkgs/development/ocaml-modules
parentaf33b23de3144b2c2085dda19dc223369683a495 (diff)
downloadnixlib-03568b327e04ea07faac58a1d3466a537e508a3f.tar
nixlib-03568b327e04ea07faac58a1d3466a537e508a3f.tar.gz
nixlib-03568b327e04ea07faac58a1d3466a537e508a3f.tar.bz2
nixlib-03568b327e04ea07faac58a1d3466a537e508a3f.tar.lz
nixlib-03568b327e04ea07faac58a1d3466a537e508a3f.tar.xz
nixlib-03568b327e04ea07faac58a1d3466a537e508a3f.tar.zst
nixlib-03568b327e04ea07faac58a1d3466a537e508a3f.zip
fileutils: 0.5.0 -> 0.5.1
Fixes a bug with copying symlinks
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/fileutils/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/fileutils/default.nix b/pkgs/development/ocaml-modules/fileutils/default.nix
index 9dfffbf48c55..6265a4b90cae 100644
--- a/pkgs/development/ocaml-modules/fileutils/default.nix
+++ b/pkgs/development/ocaml-modules/fileutils/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, ocaml, findlib, ocamlbuild, ounit }:
 
 stdenv.mkDerivation {
-  name = "ocaml-fileutils-0.5.0";
+  name = "ocaml-fileutils-0.5.1";
 
   src = fetchurl {
-    url = https://forge.ocamlcore.org/frs/download.php/1531/ocaml-fileutils-0.5.0.tar.gz;
-    sha256 = "0xs96nlrrm335mcsgsxnqzspiqyfn26b0jjxm72br7c7ax534n47";
+    url = https://forge.ocamlcore.org/frs/download.php/1651/ocaml-fileutils-0.5.1.tar.gz;
+    sha256 = "0g6zx2rcvacklxyli19ixcf6ich9ipxsps4k3jz98f5zlaab0a7g";
   };
 
   buildInputs = [ ocaml findlib ocamlbuild ounit ];