summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2018-12-19 16:59:02 +0100
committerGitHub <noreply@github.com>2018-12-19 16:59:02 +0100
commitb7355e6f7a03623dc10858e9ddcc74bf9637792c (patch)
tree3b1af662fd09ff3f61a29536215aef9017a381a3 /pkgs
parentc98754dd1247ed3b5c1e5814464fe498f717f909 (diff)
parent20f691ddeec1de3203e047483f1f0847c8f6d8d9 (diff)
downloadnixpkgs-b7355e6f7a03623dc10858e9ddcc74bf9637792c.tar
nixpkgs-b7355e6f7a03623dc10858e9ddcc74bf9637792c.tar.gz
nixpkgs-b7355e6f7a03623dc10858e9ddcc74bf9637792c.tar.bz2
nixpkgs-b7355e6f7a03623dc10858e9ddcc74bf9637792c.tar.lz
nixpkgs-b7355e6f7a03623dc10858e9ddcc74bf9637792c.tar.xz
nixpkgs-b7355e6f7a03623dc10858e9ddcc74bf9637792c.tar.zst
nixpkgs-b7355e6f7a03623dc10858e9ddcc74bf9637792c.zip
Merge pull request #52179 from r-ryantm/auto-update/ocaml-cmdliner
ocamlPackages.cmdliner: 1.0.2 -> 1.0.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/cmdliner/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/cmdliner/default.nix b/pkgs/development/ocaml-modules/cmdliner/default.nix
index 9ba48e6ebfd..a4341ed98c6 100644
--- a/pkgs/development/ocaml-modules/cmdliner/default.nix
+++ b/pkgs/development/ocaml-modules/cmdliner/default.nix
@@ -8,11 +8,11 @@ assert stdenv.lib.versionAtLeast ocaml.version "4.01.0";
 
 stdenv.mkDerivation rec {
   name = "ocaml-${pname}-${version}";
-  version = "1.0.2";
+  version = "1.0.3";
 
   src = fetchurl {
     url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
-    sha256 = "18jqphjiifljlh9jg8zpl6310p3iwyaqphdkmf89acyaix0s4kj1";
+    sha256 = "0g3w4hvc1cx9x2yp5aqn6m2rl8lf9x1dn754hfq8m1sc1102lxna";
   };
 
   nativeBuildInputs = [ ocamlbuild topkg ];