2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchurl
|
2018-08-05 22:02:57 +02:00
|
|
|
, ed, autoreconfHook
|
2017-06-03 17:27:33 +02:00
|
|
|
}:
|
2006-10-25 01:05:12 +02:00
|
|
|
|
2012-09-18 20:48:31 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2021-07-27 20:43:38 +02:00
|
|
|
pname = "patch";
|
|
|
|
version = "2.7.6";
|
2010-01-06 14:50:51 +01:00
|
|
|
|
2012-04-23 17:47:21 +02:00
|
|
|
src = fetchurl {
|
2021-07-27 20:43:38 +02:00
|
|
|
url = "mirror://gnu/patch/patch-${version}.tar.xz";
|
2018-02-07 18:02:41 +01:00
|
|
|
sha256 = "1zfqy4rdcy279vwn2z1kbv19dcfw25d2aqy9nzvdkq5bjzd0nqdc";
|
2012-04-23 17:47:21 +02:00
|
|
|
};
|
2006-10-25 01:05:12 +02:00
|
|
|
|
2018-04-17 09:03:12 +02:00
|
|
|
patches = [
|
|
|
|
# https://git.savannah.gnu.org/cgit/patch.git/patch/?id=f290f48a621867084884bfff87f8093c15195e6a
|
|
|
|
./CVE-2018-6951.patch
|
2020-01-30 02:07:02 +01:00
|
|
|
|
|
|
|
# https://git.savannah.gnu.org/cgit/patch.git/patch/?id=b5a91a01e5d0897facdd0f49d64b76b0f02b43e1
|
|
|
|
./Allow_input_files_to_be_missing_for_ed-style_patches.patch
|
|
|
|
|
|
|
|
# https://git.savannah.gnu.org/cgit/patch.git/patch/?id=123eaff0d5d1aebe128295959435b9ca5909c26d
|
|
|
|
./CVE-2018-1000156.patch
|
|
|
|
|
2019-04-27 02:50:54 +02:00
|
|
|
# https://git.savannah.gnu.org/cgit/patch.git/commit/?id=9c986353e420ead6e706262bf204d6e03322c300
|
|
|
|
./CVE-2018-6952.patch
|
2019-07-28 09:55:06 +02:00
|
|
|
|
|
|
|
# https://git.savannah.gnu.org/cgit/patch.git/patch/?id=dce4683cbbe107a95f1f0d45fabc304acfb5d71a
|
|
|
|
./CVE-2019-13636.patch
|
|
|
|
|
|
|
|
# https://git.savannah.gnu.org/cgit/patch.git/patch/?id=3fcd042d26d70856e826a42b5f93dc4854d80bf0
|
2019-10-02 21:56:40 +02:00
|
|
|
./CVE-2019-13638-and-CVE-2018-20969.patch
|
2018-04-17 09:03:12 +02:00
|
|
|
];
|
|
|
|
|
2018-08-05 22:02:57 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2010-01-08 22:28:30 +01:00
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
configureFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2017-06-03 17:27:33 +02:00
|
|
|
"ac_cv_func_strnlen_working=yes"
|
|
|
|
];
|
2010-04-04 20:10:42 +02:00
|
|
|
|
2018-08-20 20:43:41 +02:00
|
|
|
doCheck = stdenv.hostPlatform.libc != "musl"; # not cross;
|
2023-01-21 13:00:00 +01:00
|
|
|
nativeCheckInputs = [ed];
|
2010-01-06 14:50:51 +01: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.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://savannah.gnu.org/projects/patch";
|
2010-01-06 14:50:51 +01:00
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2010-01-06 14:50:51 +01:00
|
|
|
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2021-01-15 10:19:50 +01:00
|
|
|
platforms = lib.platforms.all;
|
2010-01-06 14:50:51 +01:00
|
|
|
};
|
|
|
|
}
|