summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-01-04 06:43:06 -0500
committerGraham Christensen <graham@grahamc.com>2017-01-04 06:43:06 -0500
commit6a68b9526680c249491fc8ed9f96ed33b89b73f5 (patch)
tree85a11a949c334f8824e98fbe47f75350eca2eebb /pkgs/tools/system
parente17b483669535d60d802cc979cad5e463e8ea114 (diff)
downloadnixlib-6a68b9526680c249491fc8ed9f96ed33b89b73f5.tar
nixlib-6a68b9526680c249491fc8ed9f96ed33b89b73f5.tar.gz
nixlib-6a68b9526680c249491fc8ed9f96ed33b89b73f5.tar.bz2
nixlib-6a68b9526680c249491fc8ed9f96ed33b89b73f5.tar.lz
nixlib-6a68b9526680c249491fc8ed9f96ed33b89b73f5.tar.xz
nixlib-6a68b9526680c249491fc8ed9f96ed33b89b73f5.tar.zst
nixlib-6a68b9526680c249491fc8ed9f96ed33b89b73f5.zip
chase: correct download URL
I broke the change after changing the name from chase_ to chase-. Sorry!
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/chase/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/system/chase/default.nix b/pkgs/tools/system/chase/default.nix
index 8a4351707168..15d2b16faee6 100644
--- a/pkgs/tools/system/chase/default.nix
+++ b/pkgs/tools/system/chase/default.nix
@@ -1,11 +1,12 @@
 { stdenv, fetchurl ,pkgconfig, libatomic_ops , boehmgc }:
 
 stdenv.mkDerivation rec {
-  name = "chase-0.5.2";
+  name = "chase-${version}";
+  version = "0.5.2";
 
   buildInputs = [ pkgconfig libatomic_ops boehmgc ] ;
   src = fetchurl {
-    url = "mirror://debian/pool/main/c/chase/${name}.orig.tar.gz";
+    url = "mirror://debian/pool/main/c/chase/chase_${version}.orig.tar.gz";
     sha256 = "68d95c2d4dc45553b75790fcea4413b7204a2618dff148116ca9bdb0310d737f";
   };