From 1cf46adf353b3564e7bb5e51f82e0e908541d9a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Wallez?= Date: Sat, 14 May 2022 18:29:58 +0200 Subject: [PATCH] hashdeep: fix --- pkgs/tools/security/hashdeep/default.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/hashdeep/default.nix b/pkgs/tools/security/hashdeep/default.nix index 0e24e0ec3a3..b9810344286 100644 --- a/pkgs/tools/security/hashdeep/default.nix +++ b/pkgs/tools/security/hashdeep/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, autoreconfHook }: +{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook }: stdenv.mkDerivation rec { pname = "hashdeep"; @@ -11,6 +11,17 @@ stdenv.mkDerivation rec { sha256 = "0m2b042ndikavmplv3qjdhfj44hl1h8car83c192xi9nv5ahi7mf"; }; + patches = [ + (fetchpatch { + # Relevant link: + # Defect report fixed in GCC 11 + # Search for "DR 1512" in + name = "fix-cpp-defect-report-1512.patch"; + url = "https://github.com/jessek/hashdeep/commit/6ef69a26126ee4e69a25392fd456b8a66c51dffd.patch"; + sha256 = "sha256-IrqcnrKINeoh56FR25FzSM1YJMkM2yFd/GwOeWGRLFo="; + }) + ]; + nativeBuildInputs = [ autoreconfHook ]; meta = with lib; {