linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / gnupatch / default.nix
blob97d3136e7e72b8349e2b7a80269d17778e7430f3
1 { lib, stdenv, fetchurl
2 , ed, autoreconfHook
3 }:
5 stdenv.mkDerivation rec {
6   name = "patch-2.7.6";
8   src = fetchurl {
9     url = "mirror://gnu/patch/${name}.tar.xz";
10     sha256 = "1zfqy4rdcy279vwn2z1kbv19dcfw25d2aqy9nzvdkq5bjzd0nqdc";
11   };
13   patches = [
14     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=f290f48a621867084884bfff87f8093c15195e6a
15     ./CVE-2018-6951.patch
17     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=b5a91a01e5d0897facdd0f49d64b76b0f02b43e1
18     ./Allow_input_files_to_be_missing_for_ed-style_patches.patch
20     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=123eaff0d5d1aebe128295959435b9ca5909c26d
21     ./CVE-2018-1000156.patch
23     # https://git.savannah.gnu.org/cgit/patch.git/commit/?id=9c986353e420ead6e706262bf204d6e03322c300
24     ./CVE-2018-6952.patch
26     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=dce4683cbbe107a95f1f0d45fabc304acfb5d71a
27     ./CVE-2019-13636.patch
29     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=3fcd042d26d70856e826a42b5f93dc4854d80bf0
30     ./CVE-2019-13638-and-CVE-2018-20969.patch
31   ];
33   nativeBuildInputs = [ autoreconfHook ];
35   configureFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
36     "ac_cv_func_strnlen_working=yes"
37   ];
39   doCheck = stdenv.hostPlatform.libc != "musl"; # not cross;
40   checkInputs = [ed];
42   meta = {
43     description = "GNU Patch, a program to apply differences to files";
45     longDescription =
46       '' GNU Patch takes a patch file containing a difference listing
47          produced by the diff program and applies those differences to one or
48          more original files, producing patched versions.
49       '';
51     homepage = "https://savannah.gnu.org/projects/patch";
53     license = lib.licenses.gpl3Plus;
55     maintainers = [ ];
56     platforms = lib.platforms.all;
57   };