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

View File

@@ -5225,11 +5225,11 @@ pythonPackages = modules // import ./python-packages-generated.nix {
pymacs = pkgs.stdenv.mkDerivation rec {
version = "v0.25";
version = "0.25";
name = "Pymacs-${version}";
src = fetchurl {
url = "https://github.com/pinard/Pymacs/tarball/${version}";
url = "https://github.com/pinard/Pymacs/tarball/v${version}";
name = "${name}.tar.gz";
sha256 = "1hmy76c5igm95rqbld7gvk0az24smvc8hplfwx2f5rhn6frj3p2i";
};