about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <vbgl@users.noreply.github.com>2018-06-27 21:02:47 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-27 21:02:47 +0200
commitb96c0e6d7b57cdc9caaf6f4fae8e1ab0dfec11cd (patch)
tree583b6f41d2910f2c59141cebde09b09bde19f7aa
parent249be1c56025e60af71397cd6e5d54626f89e98b (diff)
downloadnixlib-b96c0e6d7b57cdc9caaf6f4fae8e1ab0dfec11cd.tar
nixlib-b96c0e6d7b57cdc9caaf6f4fae8e1ab0dfec11cd.tar.gz
nixlib-b96c0e6d7b57cdc9caaf6f4fae8e1ab0dfec11cd.tar.bz2
nixlib-b96c0e6d7b57cdc9caaf6f4fae8e1ab0dfec11cd.tar.lz
nixlib-b96c0e6d7b57cdc9caaf6f4fae8e1ab0dfec11cd.tar.xz
nixlib-b96c0e6d7b57cdc9caaf6f4fae8e1ab0dfec11cd.tar.zst
nixlib-b96c0e6d7b57cdc9caaf6f4fae8e1ab0dfec11cd.zip
ocaml-top: 1.1.4 -> 1.1.5 (#42664)
-rw-r--r--pkgs/development/tools/ocaml/ocaml-top/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/tools/ocaml/ocaml-top/default.nix b/pkgs/development/tools/ocaml/ocaml-top/default.nix
index e7d8b163420c..744a136c9ef2 100644
--- a/pkgs/development/tools/ocaml/ocaml-top/default.nix
+++ b/pkgs/development/tools/ocaml/ocaml-top/default.nix
@@ -2,11 +2,12 @@
 , ocamlPackages
 , jbuilder }:
 
-stdenv.mkDerivation {
-  name = "ocaml-top-1.1.4";
+stdenv.mkDerivation rec {
+  version = "1.1.5";
+  name = "ocaml-top-${version}";
   src = fetchzip {
-    url = https://github.com/OCamlPro/ocaml-top/archive/1.1.4.tar.gz;
-    sha256 = "1lmzjmnzsg8xdz0q5nm95zclihi9z80kzsalapg0s9wq0id8qm4j";
+    url = "https://github.com/OCamlPro/ocaml-top/archive/${version}.tar.gz";
+    sha256 = "1d4i6aanrafgrgk4mh154k6lkwk0b6mh66rykz33awlf5pfqd8yv";
   };
 
   buildInputs = [ ncurses jbuilder ]