summary refs log tree commit diff
path: root/pkgs/applications/networking/yafc
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2012-07-22 10:24:15 +0200
committerLluís Batlle i Rossell <viric@viric.name>2012-07-22 10:24:15 +0200
commit305eb0a30fcc87661d4dc3d1422d4cadda1e869e (patch)
treee1bc95fe9ad1f037d2ccbd92133b3b7f58f098c1 /pkgs/applications/networking/yafc
parent0435f39008f106b5b29e7706889aaea693e36f21 (diff)
downloadnixlib-305eb0a30fcc87661d4dc3d1422d4cadda1e869e.tar
nixlib-305eb0a30fcc87661d4dc3d1422d4cadda1e869e.tar.gz
nixlib-305eb0a30fcc87661d4dc3d1422d4cadda1e869e.tar.bz2
nixlib-305eb0a30fcc87661d4dc3d1422d4cadda1e869e.tar.lz
nixlib-305eb0a30fcc87661d4dc3d1422d4cadda1e869e.tar.xz
nixlib-305eb0a30fcc87661d4dc3d1422d4cadda1e869e.tar.zst
nixlib-305eb0a30fcc87661d4dc3d1422d4cadda1e869e.zip
yafc: making the derivation name include the version
Diffstat (limited to 'pkgs/applications/networking/yafc')
-rw-r--r--pkgs/applications/networking/yafc/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/networking/yafc/default.nix b/pkgs/applications/networking/yafc/default.nix
index 7089c7507db0..9b1c9892cbfa 100644
--- a/pkgs/applications/networking/yafc/default.nix
+++ b/pkgs/applications/networking/yafc/default.nix
@@ -1,10 +1,9 @@
 {stdenv, fetchurl, readline, libssh, intltool}:
 
 stdenv.mkDerivation rec {
-  name = "yafc";
-  version = "1.2.0";
+  name = "yafc-1.2.0";
   src = fetchurl {
-    url = "https://github.com/downloads/sebastinas/yafc/${name}-${version}.tar.xz";
+    url = "https://github.com/downloads/sebastinas/yafc/${name}.tar.xz";
     sha256 = "0h5cbvvfkigvzfqqzvgqpn8m0ilyng3rgyh85c0mi48klzv8kb58";
   };