summary refs log tree commit diff
path: root/pkgs/development/libraries/hawknl
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2015-12-30 14:04:45 +0100
committerRobert Helgesson <robert@rycee.net>2015-12-30 21:15:15 +0100
commit23675945754e9e394fc317e0483d10c6417a6f11 (patch)
tree95fe4d76b4942ab25324750890a539b471d7e74e /pkgs/development/libraries/hawknl
parent9f5b058041c954e5e8b2962acf0438bd1d5833bd (diff)
downloadnixpkgs-23675945754e9e394fc317e0483d10c6417a6f11.tar
nixpkgs-23675945754e9e394fc317e0483d10c6417a6f11.tar.gz
nixpkgs-23675945754e9e394fc317e0483d10c6417a6f11.tar.bz2
nixpkgs-23675945754e9e394fc317e0483d10c6417a6f11.tar.lz
nixpkgs-23675945754e9e394fc317e0483d10c6417a6f11.tar.xz
nixpkgs-23675945754e9e394fc317e0483d10c6417a6f11.tar.zst
nixpkgs-23675945754e9e394fc317e0483d10c6417a6f11.zip
hawknl: fix download URL
The upstream URL is broken, use an alternative download URL. Checksum is
the same as old download.
Diffstat (limited to 'pkgs/development/libraries/hawknl')
-rw-r--r--pkgs/development/libraries/hawknl/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/libraries/hawknl/default.nix b/pkgs/development/libraries/hawknl/default.nix
index 290f411cbf4..372a8b8c112 100644
--- a/pkgs/development/libraries/hawknl/default.nix
+++ b/pkgs/development/libraries/hawknl/default.nix
@@ -1,11 +1,12 @@
 {stdenv, fetchurl, unzip}:
 
 stdenv.mkDerivation {
-	name = "hawknl-1.34";
-	src = fetchurl {
-		url = http://hawksoft.com/download/files/HawkNL168src.zip;
-		sha256 = "11shn2fbxj3w0j77w0234pqyj1368x686kkgv09q5yqhi1cdp028";
-	};
+  name = "hawknl-1.68";
+
+  src = fetchurl {
+    url = http://urchlay.naptime.net/~urchlay/src/HawkNL168src.zip;
+    sha256 = "11shn2fbxj3w0j77w0234pqyj1368x686kkgv09q5yqhi1cdp028";
+  };
 
   buildInputs = [ unzip ];