mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ed: update to 1.10, working around *.lz problem
This commit is contained in:
parent
3360fa1afb
commit
acba6b4da2
@ -1,11 +1,14 @@
|
|||||||
{ fetchurl, stdenv }:
|
{ fetchurl, stdenv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ed-1.9";
|
name = "ed-1.10";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/ed/${name}.tar.gz";
|
# gnu only provides *.lz tarball, which is unfriendly for stdenv bootstrapping
|
||||||
sha256 = "122syihsx2hwzj75mkf5a9ssiky2xby748kp4cc00wzhmp7p5cym";
|
#url = "mirror://gnu/ed/${name}.tar.gz";
|
||||||
|
url = "http://pkgs.fedoraproject.org/repo/extras/ed/${name}.tar.bz2"
|
||||||
|
+ "/38204d4c690a17a989e802ba01b45e98/${name}.tar.bz2";
|
||||||
|
sha256 = "16qvshl8470f3znjfrrci3lzllqkzc6disk5kygzsg9hh4f6wysq";
|
||||||
};
|
};
|
||||||
|
|
||||||
/* FIXME: Tests currently fail on Darwin:
|
/* FIXME: Tests currently fail on Darwin:
|
||||||
|
Loading…
Reference in New Issue
Block a user