about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-12-25 18:42:41 +0000
committerSergei Trofimovich <slyich@gmail.com>2023-12-25 18:42:41 +0000
commit793994bac1be3ecc7a54e239cee5a0d3a7fadde1 (patch)
tree97aeeb83b74d3962ce3f643cec17f77a533a8bdb /pkgs/tools/security
parente2a637a4790faccd586969773049fdec2cf3b9e2 (diff)
fwknop: pull fix for `autoconf-2.72` build pending upstream inclusion
Without the change the build against `autoconf-2.72` fails as:

    fwknop> ./configure: line 18863: syntax error near unexpected token `;;'
    fwknop> ./configure: line 18863: `   ;;'
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/fwknop/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/tools/security/fwknop/default.nix b/pkgs/tools/security/fwknop/default.nix
index 5625ab47058d4..6c4ce6507657d 100644
--- a/pkgs/tools/security/fwknop/default.nix
+++ b/pkgs/tools/security/fwknop/default.nix
@@ -25,6 +25,14 @@ stdenv.mkDerivation rec {
       url = "https://github.com/mrash/fwknop/commit/a8214fd58bc46d23b64b3a55db023c7f5a5ea6af.patch";
       sha256 = "0cp1350q66n455hpd3rdydb9anx66bcirza5gyyyy5232zgg58bi";
     })
+
+    # Pull patch pending upstream inclusion for `autoconf-2.72` support:
+    #   https://github.com/mrash/fwknop/pull/357
+    (fetchpatch {
+      name = "autoconf-2.72.patch";
+      url = "https://github.com/mrash/fwknop/commit/bee7958532338499e35c19e75937891c8113f7de.patch";
+      hash = "sha256-lrro5dSDR0Zz9aO3bV5vFFADNJjoDR9z6P5lFYWyLW8=";
+    })
   ];
 
   nativeBuildInputs = [ autoreconfHook ];