treewide: various version number fixes

This commit is contained in:
Patrick Hilhorst 2018-11-05 00:50:34 +01:00
parent 9ec40cc3bf
commit f54f5fdaaa
No known key found for this signature in database
GPG Key ID: 589BB0A8DAFEF2B2
3 changed files with 4 additions and 5 deletions

View File

@ -11,11 +11,11 @@
}:
buildPythonPackage rec {
name = "qutip";
pname = "qutip";
version = "2.2.0";
src = fetchurl {
url = "https://qutip.googlecode.com/files/QuTiP-2.2.0.tar.gz";
url = "https://qutip.googlecode.com/files/QuTiP-${version}.tar.gz";
sha256 = "a26a639d74b2754b3a1e329d91300e587e8c399d8a81d8f18a4a74c6d6f02ba3";
};

View File

@ -3,7 +3,6 @@
buildPythonPackage rec {
pname = "waitress-django";
version = "0.0.0";
name = pname;
src = ./.;
pythonPath = [ django_1_8 waitress ];

View File

@ -6,10 +6,10 @@ let numVersion = "02.18"; # :(
in
stdenv.mkDerivation rec {
name = "lshw-${numVersion}b";
version = "B.${numVersion}";
version = "${numVersion}";
src = fetchurl {
url = "https://ezix.org/software/files/lshw-${version}.tar.gz";
url = "https://ezix.org/software/files/lshw-B.${version}.tar.gz";
sha256 = "0brwra4jld0d53d7jsgca415ljglmmx1l2iazpj4ndilr48yy8mf";
};