ed: update to 1.10 (close #3852)

authored by Mateusz Kowalczyk and committed by Vladimír Čunát 60902b97 dd3f3bdc

+8 -7
+8 -7
pkgs/applications/editors/ed/default.nix
··· 1 - { fetchurl, stdenv }: 2 3 stdenv.mkDerivation rec { 4 - name = "ed-1.9"; 5 6 src = fetchurl { 7 - url = "mirror://gnu/ed/${name}.tar.gz"; 8 - sha256 = "122syihsx2hwzj75mkf5a9ssiky2xby748kp4cc00wzhmp7p5cym"; 9 }; 10 11 /* FIXME: Tests currently fail on Darwin: ··· 23 compileFlags = [ "CC=${stdenv.cross.config}-gcc" ]; 24 }; 25 26 meta = { 27 description = "GNU ed, an implementation of the standard Unix editor"; 28 ··· 38 ''; 39 40 license = stdenv.lib.licenses.gpl3Plus; 41 - 42 homepage = http://www.gnu.org/software/ed/; 43 - 44 - maintainers = [ ]; 45 }; 46 }
··· 1 + { fetchurl, stdenv, lzip }: 2 3 stdenv.mkDerivation rec { 4 + version = "1.10"; 5 + name = "ed-${version}"; 6 7 src = fetchurl { 8 + url = "mirror://gnu/ed/${name}.tar.lz"; 9 + sha256 = "16kycdm5fcvpdr41hxb2da8da6jzs9dqznsg5552z6rh28n0jh4m"; 10 }; 11 12 /* FIXME: Tests currently fail on Darwin: ··· 24 compileFlags = [ "CC=${stdenv.cross.config}-gcc" ]; 25 }; 26 27 + buildInputs = [ lzip ]; 28 + 29 meta = { 30 description = "GNU ed, an implementation of the standard Unix editor"; 31 ··· 41 ''; 42 43 license = stdenv.lib.licenses.gpl3Plus; 44 homepage = http://www.gnu.org/software/ed/; 45 + maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 46 }; 47 }