mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
django: Fix URL in src.
Accidentally left the ${version} url but it didn't cause an error on my machine, as I used nix-prefetch-url with the correct URL. This should be fixed by now.
This commit is contained in:
parent
3e2e746d5a
commit
17c8e65cef
1 changed files with 1 additions and 1 deletions
|
@ -510,7 +510,7 @@ let pythonPackages = python.modules // rec {
|
|||
version = "1.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.djangoproject.com/m/releases/${version}/${name}.tar.gz";
|
||||
url = "http://www.djangoproject.com/m/releases/1.4/${name}.tar.gz";
|
||||
sha256 = "16s0anvpaccbqmdrhl71z73k0dy2sl166nnc2fbd5lshlgmj13ad";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue