nano: 2.6.3 -> 2.7.0 (#18201)
This commit is contained in:
parent
7b1efbf621
commit
b6116539be
1 changed files with 3 additions and 12 deletions
|
@ -12,10 +12,10 @@ with stdenv.lib;
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nano-${version}";
|
||||
version = "2.6.3";
|
||||
version = "2.7.0";
|
||||
src = fetchurl {
|
||||
url = "https://nano-editor.org/dist/v2.6/${name}.tar.gz";
|
||||
sha256 = "00ym3zws1vdds726drgr5wj14mjn18d96ghn6vjci0915zhm8h2g";
|
||||
url = "mirror://gnu/nano/${name}.tar.xz";
|
||||
sha256 = "08cmnca3s377z74yjw1afz59l2h9s40wsa9wxw5y4x5f2jaz6spq";
|
||||
};
|
||||
nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;
|
||||
buildInputs = [ ncurses ];
|
||||
|
@ -26,15 +26,6 @@ stdenv.mkDerivation rec {
|
|||
${optionalString enableTiny "--enable-tiny"}
|
||||
'';
|
||||
|
||||
patchFlags = [ "-p0" ];
|
||||
|
||||
patches = optional stdenv.isDarwin
|
||||
(fetchurl {
|
||||
name = "darwin.patch";
|
||||
url = "https://trac.macports.org/browser/trunk/dports/editors/nano/files/patch-src-winio.c.diff?rev=151356&format=txt";
|
||||
sha256 = "184q33irz9px2svwr2qx70zvfby5zlwlhv4k607yzsy90fq2jpdd";
|
||||
});
|
||||
|
||||
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
substituteInPlace src/text.c --replace "__time_t" "time_t"
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue