From 305eb0a30fcc87661d4dc3d1422d4cadda1e869e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 22 Jul 2012 10:24:15 +0200 Subject: [PATCH] yafc: making the derivation name include the version --- pkgs/applications/networking/yafc/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/yafc/default.nix b/pkgs/applications/networking/yafc/default.nix index 7089c7507db..9b1c9892cbf 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"; };