about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2015-11-30 11:45:55 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-11-30 11:46:14 +0100
commit2ccc9a8bd166bf0d215b06d7cbff4317ed8fc8c9 (patch)
tree11543171728a16d16895bbe0a10da89d4cbb5793 /pkgs
parentdc977f78a87ad71bc94de7fb2fa132cacdbcedec (diff)
downloadnixlib-2ccc9a8bd166bf0d215b06d7cbff4317ed8fc8c9.tar
nixlib-2ccc9a8bd166bf0d215b06d7cbff4317ed8fc8c9.tar.gz
nixlib-2ccc9a8bd166bf0d215b06d7cbff4317ed8fc8c9.tar.bz2
nixlib-2ccc9a8bd166bf0d215b06d7cbff4317ed8fc8c9.tar.lz
nixlib-2ccc9a8bd166bf0d215b06d7cbff4317ed8fc8c9.tar.xz
nixlib-2ccc9a8bd166bf0d215b06d7cbff4317ed8fc8c9.tar.zst
nixlib-2ccc9a8bd166bf0d215b06d7cbff4317ed8fc8c9.zip
easy-format: 1.0.2 -> 1.1.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/easy-format/default.nix18
1 files changed, 10 insertions, 8 deletions
diff --git a/pkgs/development/ocaml-modules/easy-format/default.nix b/pkgs/development/ocaml-modules/easy-format/default.nix
index 0554b67f1d78..bac558cc50ac 100644
--- a/pkgs/development/ocaml-modules/easy-format/default.nix
+++ b/pkgs/development/ocaml-modules/easy-format/default.nix
@@ -1,25 +1,27 @@
-{stdenv, fetchurl, ocaml, findlib}:
+{ stdenv, fetchzip, ocaml, findlib }:
 let
   pname = "easy-format";
-  version = "1.0.2";
-  webpage = "http://mjambon.com/${pname}.html";
+  version = "1.1.0";
 in
-stdenv.mkDerivation rec {
+stdenv.mkDerivation {
 
   name = "${pname}-${version}";
 
-  src = fetchurl {
-    url = "http://mjambon.com/releases/${pname}/${name}.tar.gz";
-    sha256 = "07wlgprqvk92z0p2xzbnvh312ca6gvhy3xc6hxlqfawnnnin7rzi";
+  src = fetchzip {
+    url = "https://github.com/mjambon/${pname}/archive/v${version}.tar.gz";
+    sha256 = "084blm13k5lakl5wq3qfxbd0l0bwblvk928v75xcxpaqwv426w5a";
   };
 
   buildInputs = [ ocaml findlib ];
 
   createFindlibDestdir = true;
 
+  doCheck = true;
+  checkTarget = "test";
+
   meta = with stdenv.lib; {
     description = "A high-level and functional interface to the Format module of the OCaml standard library";
-    homepage = "${webpage}";
+    homepage = "http://mjambon.com/${pname}.html";
     license = licenses.bsd3;
     maintainers = [ maintainers.vbgl ];
   };