about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/notty
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2020-04-14 11:16:53 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2020-04-15 19:03:46 +0200
commit759cac4288e710278787c43330caf9899b77868a (patch)
tree2f6ecd1c9b1968df625d83babb32de1298a6d409 /pkgs/development/ocaml-modules/notty
parente16c7dae256bcb6b77399a4d80f512a117cca5d0 (diff)
downloadnixlib-759cac4288e710278787c43330caf9899b77868a.tar
nixlib-759cac4288e710278787c43330caf9899b77868a.tar.gz
nixlib-759cac4288e710278787c43330caf9899b77868a.tar.bz2
nixlib-759cac4288e710278787c43330caf9899b77868a.tar.lz
nixlib-759cac4288e710278787c43330caf9899b77868a.tar.xz
nixlib-759cac4288e710278787c43330caf9899b77868a.tar.zst
nixlib-759cac4288e710278787c43330caf9899b77868a.zip
ocamlPackages.notty: 0.2.1 → 0.2.2
Diffstat (limited to 'pkgs/development/ocaml-modules/notty')
-rw-r--r--pkgs/development/ocaml-modules/notty/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/notty/default.nix b/pkgs/development/ocaml-modules/notty/default.nix
index f273f28a71eb..420e632b99e5 100644
--- a/pkgs/development/ocaml-modules/notty/default.nix
+++ b/pkgs/development/ocaml-modules/notty/default.nix
@@ -4,19 +4,19 @@
 
 with stdenv.lib;
 
-if !versionAtLeast ocaml.version "4.03"
+if !versionAtLeast ocaml.version "4.05"
 then throw "notty is not available for OCaml ${ocaml.version}"
 else
 
 let withLwt = lwt != null; in
 
 stdenv.mkDerivation rec {
-  version = "0.2.1";
+  version = "0.2.2";
   name = "ocaml${ocaml.version}-notty-${version}";
 
   src = fetchurl {
     url = "https://github.com/pqwy/notty/releases/download/v${version}/notty-${version}.tbz";
-    sha256 = "0wdfmgx1mz77s7m451vy8r9i4iqwn7s7b39kpbpckf3w9417riq0";
+    sha256 = "1y3hx8zjri3x50nyiqal5gak1sw54gw3xssrqbj7srinvkdmrz1q";
   };
 
   buildInputs = [ ocaml findlib ocamlbuild topkg ocb-stubblr ];