summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/camlp5
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-11-29 18:11:54 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-11-29 18:34:21 +0000
commitf0d7e808b28282a9cd4b8eaffd02418dae8b1779 (patch)
tree5120c1c5daea6ac1f8371c2b6b24fc0d66f855cc /pkgs/development/tools/ocaml/camlp5
parent56366b5e668d4d5086cbadbb04c5dbc01a798581 (diff)
downloadnixpkgs-f0d7e808b28282a9cd4b8eaffd02418dae8b1779.tar
nixpkgs-f0d7e808b28282a9cd4b8eaffd02418dae8b1779.tar.gz
nixpkgs-f0d7e808b28282a9cd4b8eaffd02418dae8b1779.tar.bz2
nixpkgs-f0d7e808b28282a9cd4b8eaffd02418dae8b1779.tar.lz
nixpkgs-f0d7e808b28282a9cd4b8eaffd02418dae8b1779.tar.xz
nixpkgs-f0d7e808b28282a9cd4b8eaffd02418dae8b1779.tar.zst
nixpkgs-f0d7e808b28282a9cd4b8eaffd02418dae8b1779.zip
camlp5: 6.16 -> 6.17
Diffstat (limited to 'pkgs/development/tools/ocaml/camlp5')
-rw-r--r--pkgs/development/tools/ocaml/camlp5/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/tools/ocaml/camlp5/default.nix b/pkgs/development/tools/ocaml/camlp5/default.nix
index 3e37de9bd10..12148625a05 100644
--- a/pkgs/development/tools/ocaml/camlp5/default.nix
+++ b/pkgs/development/tools/ocaml/camlp5/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, transitional ? false}:
+{ stdenv, fetchzip, ocaml, transitional ? false }:
 
 let
   metafile = ./META;
@@ -6,11 +6,11 @@ in
 
 stdenv.mkDerivation {
 
-  name = "camlp5${if transitional then "_transitional" else ""}-6.16";
+  name = "camlp5${if transitional then "_transitional" else ""}-6.17";
 
-  src = fetchurl {
-    url = http://camlp5.gforge.inria.fr/distrib/src/camlp5-6.16.tgz;
-    sha256 = "1caqa2rl7rav7pfwv1l1j0j18yr1qzyyqz0wa9519x91ckznqi7x";
+  src = fetchzip {
+    url = https://github.com/camlp5/camlp5/archive/rel617.tar.gz;
+    sha256 = "0finmr6y0lyd7mnl61kmvwd32cmmf64m245vdh1iy0139rxf814c";
   };
 
   buildInputs = [ ocaml ];
@@ -30,7 +30,7 @@ stdenv.mkDerivation {
       Camlp5 is a preprocessor and pretty-printer for OCaml programs.
       It also provides parsing and printing tools.
     '';
-    homepage = http://pauillac.inria.fr/~ddr/camlp5/;
+    homepage = https://camlp5.github.io/;
     license = licenses.bsd3;
     platforms = ocaml.meta.platforms or [];
     maintainers = with maintainers; [