mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
bash: Fix URL.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19688
This commit is contained in:
parent
64f1191313
commit
6dc132be1e
1 changed files with 3 additions and 2 deletions
|
@ -2,11 +2,12 @@
|
|||
|
||||
assert interactive -> readline != null;
|
||||
|
||||
let realName = "bash-4.1"; in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bash-4.1-p2";
|
||||
name = "${realName}-p${builtins.length patches}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/bash/${name}.tar.gz";
|
||||
url = "mirror://gnu/bash/${realName}.tar.gz";
|
||||
sha256 = "1np1ggp1lv8idwfx3mcxl9rhadqdf4h3x4isa3dk8v9wm0j72qiz";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue