summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-12-07 04:22:10 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2018-12-07 04:22:10 +0000
commit0c9abf6436dca26e686c89c2be2e21713b36e38b (patch)
treebe967b78cea616cabaf477f09be51028e86c149f
parent88b48753acfa4403b2d0676ca5b097882c474882 (diff)
downloadnixpkgs-0c9abf6436dca26e686c89c2be2e21713b36e38b.tar
nixpkgs-0c9abf6436dca26e686c89c2be2e21713b36e38b.tar.gz
nixpkgs-0c9abf6436dca26e686c89c2be2e21713b36e38b.tar.bz2
nixpkgs-0c9abf6436dca26e686c89c2be2e21713b36e38b.tar.lz
nixpkgs-0c9abf6436dca26e686c89c2be2e21713b36e38b.tar.xz
nixpkgs-0c9abf6436dca26e686c89c2be2e21713b36e38b.tar.zst
nixpkgs-0c9abf6436dca26e686c89c2be2e21713b36e38b.zip
ocamlPackages.camlimages: 5.0.0 -> 5.0.1
-rw-r--r--pkgs/development/ocaml-modules/camlimages/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/camlimages/default.nix b/pkgs/development/ocaml-modules/camlimages/default.nix
index 065c5a650b8..8b0b70cae60 100644
--- a/pkgs/development/ocaml-modules/camlimages/default.nix
+++ b/pkgs/development/ocaml-modules/camlimages/default.nix
@@ -1,17 +1,17 @@
-{ stdenv, fetchzip, buildDunePackage, configurator, cppo, lablgtk }:
+{ lib, fetchzip, buildDunePackage, configurator, cppo, lablgtk }:
 
 buildDunePackage rec {
   pname = "camlimages";
-  version = "5.0.0";
+  version = "5.0.1";
 
   src = fetchzip {
     url = "https://bitbucket.org/camlspotter/${pname}/get/${version}.tar.gz";
-    sha256 = "00qvwxkfnhv93yi1iq7vy3p5lxyi9xigxcq464s4ii6bmp32d998";
+    sha256 = "1figrgzsdrrxzfza0bhz0225g1rwawdf5x2m9lw2kzrdb815khs5";
   };
 
   buildInputs = [ configurator cppo lablgtk ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     branch = "5.0";
     homepage = https://bitbucket.org/camlspotter/camlimages;
     description = "OCaml image processing library";