about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorBenjamin Staffin <bstaffin@fitbit.com>2016-01-01 16:16:39 -0800
committerBjørn Forsman <bjorn.forsman@gmail.com>2016-01-02 18:21:48 +0100
commit4a69e5ae856e727ac9282f08f565e4466f3cc029 (patch)
tree8327369ca54b49b71e0975dc3448144e40ff66d3 /pkgs/development/tools/ocaml
parentb1570d4f5731c50881812cd1e31c7e97604aeb42 (diff)
downloadnixlib-4a69e5ae856e727ac9282f08f565e4466f3cc029.tar
nixlib-4a69e5ae856e727ac9282f08f565e4466f3cc029.tar.gz
nixlib-4a69e5ae856e727ac9282f08f565e4466f3cc029.tar.bz2
nixlib-4a69e5ae856e727ac9282f08f565e4466f3cc029.tar.lz
nixlib-4a69e5ae856e727ac9282f08f565e4466f3cc029.tar.xz
nixlib-4a69e5ae856e727ac9282f08f565e4466f3cc029.tar.zst
nixlib-4a69e5ae856e727ac9282f08f565e4466f3cc029.zip
omake: Fix broken download URL
All the download links on http://omake.metaprl.org/ seem to be dead.
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/omake/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/ocaml/omake/default.nix b/pkgs/development/tools/ocaml/omake/default.nix
index 300cbbc0a0c1..8be574a8a4c6 100644
--- a/pkgs/development/tools/ocaml/omake/default.nix
+++ b/pkgs/development/tools/ocaml/omake/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
   name = "${pname}-${version}";
 
   src = fetchurl {
-    url = "${webpage}/downloads/${pname}-${version}.tar.gz";
+    url = "mirror://debian/pool/main/o/omake/omake_${version}.orig.tar.gz";
     sha256 = "1bfxbsimfivq0ar2g5fkzvr5ql97n5dg562pfyd29y4zyh4mwrsv";
   };
   patchFlags = "-p0";