about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2018-12-19 16:42:25 +0100
committerGitHub <noreply@github.com>2018-12-19 16:42:25 +0100
commitc98754dd1247ed3b5c1e5814464fe498f717f909 (patch)
tree06dab30859eebf8aa89e582a1a5c79c0f5f6972a /pkgs/development
parent721f3b7abde906f0b166134de7e411fee6ee9a79 (diff)
parent2d5545daaf8b86aeceacbc292ab8201b90f3007f (diff)
downloadnixlib-c98754dd1247ed3b5c1e5814464fe498f717f909.tar
nixlib-c98754dd1247ed3b5c1e5814464fe498f717f909.tar.gz
nixlib-c98754dd1247ed3b5c1e5814464fe498f717f909.tar.bz2
nixlib-c98754dd1247ed3b5c1e5814464fe498f717f909.tar.lz
nixlib-c98754dd1247ed3b5c1e5814464fe498f717f909.tar.xz
nixlib-c98754dd1247ed3b5c1e5814464fe498f717f909.tar.zst
nixlib-c98754dd1247ed3b5c1e5814464fe498f717f909.zip
Merge pull request #52172 from r-ryantm/auto-update/ocaml-curses
ocamlPackages.curses: 1.0.3 -> 1.0.4
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/curses/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/curses/default.nix b/pkgs/development/ocaml-modules/curses/default.nix
index eebb2f68f3dd..d08259af247c 100644
--- a/pkgs/development/ocaml-modules/curses/default.nix
+++ b/pkgs/development/ocaml-modules/curses/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "ocaml-curses-${version}";
-  version = "1.0.3";
+  version = "1.0.4";
 
   src = fetchurl {
     url = "http://ocaml.phauna.org/distfiles/ocaml-curses-${version}.ogunden1.tar.gz";
-    sha256 = "0fxya4blx4zcp9hy8gxxm2z7aas7hfvwnjdlj9pmh0s5gijpwsll";
+    sha256 = "08wq1r93lincdfzlriyc5nl2p4q7ca4h6ygzgp1nhkgd93pgk9v2";
   };
 
   propagatedBuildInputs = [ ncurses ];
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "OCaml Bindings to curses/ncurses";
-    homepage = https://opam.ocaml.org/packages/curses/curses.1.0.3/;
+    homepage = https://opam.ocaml.org/packages/curses/curses.1.0.4/;
     license = licenses.gpl2;
     maintainers = [ maintainers.volth ];
     platforms = ocaml.meta.platforms or [];