Remove "v" prefix from package versions to make them machine-readable

This commit is contained in:
Evgeny Egorochkin
2014-01-10 10:16:41 +02:00
parent f512614a10
commit fd0b94dd6a
4 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
version = "1.4";
name = "grc_${version}";
name = "grc-${version}";
src = fetchurl {
url = "http://korpus.juls.savba.sk/~garabik/software/grc/${name}.tar.gz";
url = "http://korpus.juls.savba.sk/~garabik/software/grc/grc_${version}.tar.gz";
sha256 = "1l7lskxfjk32kkv4aaqw5qcxvh972nab3x2jzy67m1aa0zpcbzdv";
};