2017-06-03 16:27:33 +01:00
|
|
|
{ stdenv, fetchurl
|
2018-08-05 21:02:57 +01:00
|
|
|
, ed, autoreconfHook
|
2017-06-03 16:27:33 +01:00
|
|
|
}:
|
2006-10-25 00:05:12 +01:00
|
|
|
|
2012-09-18 19:48:31 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-02-07 17:02:41 +00:00
|
|
|
name = "patch-2.7.6";
|
2010-01-06 13:50:51 +00:00
|
|
|
|
2012-04-23 16:47:21 +01:00
|
|
|
src = fetchurl {
|
2015-03-26 05:43:04 +00:00
|
|
|
url = "mirror://gnu/patch/${name}.tar.xz";
|
2018-02-07 17:02:41 +00:00
|
|
|
sha256 = "1zfqy4rdcy279vwn2z1kbv19dcfw25d2aqy9nzvdkq5bjzd0nqdc";
|
2012-04-23 16:47:21 +01:00
|
|
|
};
|
2006-10-25 00:05:12 +01:00
|
|
|
|
2018-04-17 08:03:12 +01:00
|
|
|
patches = [
|
|
|
|
# https://git.savannah.gnu.org/cgit/patch.git/patch/?id=f290f48a621867084884bfff87f8093c15195e6a
|
|
|
|
./CVE-2018-6951.patch
|
2018-08-05 21:02:57 +01:00
|
|
|
(fetchurl {
|
|
|
|
url = https://sources.debian.org/data/main/p/patch/2.7.6-2/debian/patches/Allow_input_files_to_be_missing_for_ed-style_patches.patch;
|
|
|
|
sha256 = "0iw0lk0yhnhvfjzal48ij6zdr92mgb84jq7fwryy1hdhi47hhq64";
|
|
|
|
})
|
|
|
|
(fetchurl { # CVE-2018-1000156
|
|
|
|
url = https://sources.debian.org/data/main/p/patch/2.7.6-2/debian/patches/Fix_arbitrary_command_execution_in_ed-style_patches.patch;
|
|
|
|
sha256 = "1bpy16n3hm5nv9xkrn6c4wglzsdzj3ss1biq16w9kfv48p4hx2vg";
|
|
|
|
})
|
2018-04-17 08:03:12 +01:00
|
|
|
];
|
|
|
|
|
2018-08-05 21:02:57 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2010-01-08 21:28:30 +00:00
|
|
|
|
2018-08-20 19:43:41 +01:00
|
|
|
configureFlags = stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2017-06-03 16:27:33 +01:00
|
|
|
"ac_cv_func_strnlen_working=yes"
|
|
|
|
];
|
2010-04-04 19:10:42 +01:00
|
|
|
|
2018-08-20 19:43:41 +01:00
|
|
|
doCheck = stdenv.hostPlatform.libc != "musl"; # not cross;
|
2018-09-30 02:25:51 +01:00
|
|
|
checkInputs = [ed];
|
2010-01-06 13:50:51 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU Patch, a program to apply differences to files";
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' GNU Patch takes a patch file containing a difference listing
|
|
|
|
produced by the diff program and applies those differences to one or
|
|
|
|
more original files, producing patched versions.
|
|
|
|
'';
|
|
|
|
|
2018-12-01 17:07:00 +00:00
|
|
|
homepage = https://savannah.gnu.org/projects/patch;
|
2010-01-06 13:50:51 +00:00
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-01-06 13:50:51 +00:00
|
|
|
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2010-01-06 13:50:51 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|