ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / tools / text / gnupatch / default.nix
blob5d5e7adca30d14d33e66ae65bbefb5a040db47be
2   lib,
3   stdenv,
4   fetchurl,
5   ed,
6   autoreconfHook,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "patch";
11   version = "2.7.6";
13   src = fetchurl {
14     url = "mirror://gnu/patch/patch-${version}.tar.xz";
15     sha256 = "1zfqy4rdcy279vwn2z1kbv19dcfw25d2aqy9nzvdkq5bjzd0nqdc";
16   };
18   patches = [
19     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=f290f48a621867084884bfff87f8093c15195e6a
20     ./CVE-2018-6951.patch
22     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=b5a91a01e5d0897facdd0f49d64b76b0f02b43e1
23     ./Allow_input_files_to_be_missing_for_ed-style_patches.patch
25     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=b7b028a77bd855f6f56b17c8837fc1cca77b469d
26     ./Abort_when_cleaning_up_fails.patch
28     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=123eaff0d5d1aebe128295959435b9ca5909c26d
29     ./CVE-2018-1000156.patch
31     # https://git.savannah.gnu.org/cgit/patch.git/commit/?id=9c986353e420ead6e706262bf204d6e03322c300
32     ./CVE-2018-6952.patch
34     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=dce4683cbbe107a95f1f0d45fabc304acfb5d71a
35     ./CVE-2019-13636.patch
37     # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=3fcd042d26d70856e826a42b5f93dc4854d80bf0
38     ./CVE-2019-13638-and-CVE-2018-20969.patch
39   ];
41   nativeBuildInputs = [ autoreconfHook ];
43   configureFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
44     "ac_cv_func_strnlen_working=yes"
45   ];
47   doCheck = stdenv.hostPlatform.libc != "musl"; # not cross;
48   nativeCheckInputs = [ ed ];
50   meta = {
51     description = "GNU Patch, a program to apply differences to files";
52     mainProgram = "patch";
54     longDescription = ''
55       GNU Patch takes a patch file containing a difference listing
56       produced by the diff program and applies those differences to one or
57       more original files, producing patched versions.
58     '';
60     homepage = "https://savannah.gnu.org/projects/patch";
62     license = lib.licenses.gpl3Plus;
64     maintainers = [ ];
65     platforms = lib.platforms.all;
66   };