summaryrefslogtreecommitdiff
path: root/pkgs/build-support/fetchpatch/default.nix
blob: aae62b6887397f8efb1fe957ce1d9c7c1f79514e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# This function downloads and normalizes a patch/diff file.
# This is primarily useful for dynamically generated patches,
# such as GitHub's or cgit's, where the non-significant content parts
# often change with updating of git or cgit.
# stripLen acts as the -p parameter when applying a patch.

{
  lib,
  fetchurl,
  patchutils,
}:

{
  relative ? null,
  stripLen ? 0,
  decode ? "cat", # custom command to decode patch e.g. base64 -d
  extraPrefix ? null,
  excludes ? [ ],
  includes ? [ ],
  hunks ? [ ],
  revert ? false,
  postFetch ? "",
  nativeBuildInputs ? [ ],
  ...
}@args:
let
  args' =
    if relative != null then
      {
        stripLen = 1 + lib.length (lib.splitString "/" relative) + stripLen;
        extraPrefix = lib.optionalString (extraPrefix != null) extraPrefix;
      }
    else
      {
        inherit stripLen extraPrefix;
      };
in
let
  inherit (args') stripLen extraPrefix;
in
lib.throwIfNot (excludes == [ ] || includes == [ ])
  "fetchpatch: cannot use excludes and includes simultaneously"
  fetchurl
  (
    {
      nativeBuildInputs = [ patchutils ] ++ nativeBuildInputs;
      postFetch = ''
        tmpfile="$TMPDIR/patch"

        if [ ! -s "$out" ]; then
          echo "error: Fetched patch file '$out' is empty!" 1>&2
          exit 1
        fi

        set +e
        ${decode} < "$out" > "$tmpfile"
        if [ $? -ne 0 ] || [ ! -s "$tmpfile" ]; then
            echo 'Failed to decode patch with command "'${lib.escapeShellArg decode}'"' >&2
            echo 'Fetched file was (limited to 128 bytes):' >&2
            od -A x -t x1z -v -N 128 "$out" >&2
            exit 1
        fi
        set -e
        mv "$tmpfile" "$out"

        lsdiff \
          ${lib.optionalString (relative != null) "-p1 -i ${lib.escapeShellArg relative}/'*'"} \
          "$out" \
        | sort -u | sed -e 's/[*?]/\\&/g' \
        | xargs -I{} --delimiter='\n' \
          filterdiff \
          --include={} \
          --strip=${toString stripLen} \
          ${
            lib.optionalString (extraPrefix != null) ''
              --addoldprefix=a/${lib.escapeShellArg extraPrefix} \
              --addnewprefix=b/${lib.escapeShellArg extraPrefix} \
            ''
          } \
          --clean "$out" > "$tmpfile"

        if [ ! -s "$tmpfile" ]; then
          echo "error: Normalized patch '$tmpfile' is empty (while the fetched file was not)!" 1>&2
          echo "Did you maybe fetch a HTML representation of a patch instead of a raw patch?" 1>&2
          echo "Fetched file was:" 1>&2
          cat "$out" 1>&2
          exit 1
        fi

        filterdiff \
          -p1 \
          ${toString (map (x: "-x ${lib.escapeShellArg x}") excludes)} \
          ${toString (map (x: "-i ${lib.escapeShellArg x}") includes)} \
          ${
            lib.optionalString (hunks != [ ])
              "-# ${lib.escapeShellArg (lib.concatMapStringsSep "," toString hunks)}"
          } \
          "$tmpfile" > "$out"

        if [ ! -s "$out" ]; then
          echo "error: Filtered patch '$out' is empty (while the original patch file was not)!" 1>&2
          echo "Check your includes and excludes." 1>&2
          echo "Normalized patch file was:" 1>&2
          cat "$tmpfile" 1>&2
          exit 1
        fi
      ''
      + lib.optionalString revert ''
        interdiff "$out" /dev/null > "$tmpfile"
        mv "$tmpfile" "$out"
      ''
      + postFetch;
    }
    // removeAttrs args [
      "relative"
      "stripLen"
      "decode"
      "extraPrefix"
      "excludes"
      "includes"
      "hunks"
      "revert"
      "postFetch"
      "nativeBuildInputs"
    ]
  )