From 307ef68a01a6c2cc6ab932ef765a2909743130a3 Mon Sep 17 00:00:00 2001 From: Enno Richter Date: Mon, 6 Nov 2023 10:54:12 +0100 Subject: [PATCH] mkpasswd: fix build with clang --- pkgs/tools/security/mkpasswd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/mkpasswd/default.nix b/pkgs/tools/security/mkpasswd/default.nix index 38c26a93b4e39fa..2ee71b8227eb195 100644 --- a/pkgs/tools/security/mkpasswd/default.nix +++ b/pkgs/tools/security/mkpasswd/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation { pname = "mkpasswd"; - inherit (whois) version src; + inherit (whois) version src patches; nativeBuildInputs = [ perl pkg-config ]; buildInputs = [ libxcrypt ];