From 2d19e7cf6b87a754952c038fdc39f82004f5e402 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 3 Oct 2022 17:13:29 +0200 Subject: [PATCH] haskellPackages.nano-cryptr: fix build with libxcrypt --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 3da5b58900a6..f6e6692f96e4 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2541,6 +2541,12 @@ self: super: { doCheck = false; }) super.crypt-sha512; + nano-cryptr = overrideCabal (drv: { + librarySystemDepends = [ + pkgs.libxcrypt + ]; + }) super.nano-cryptr; + Unixutils = overrideCabal (drv: { librarySystemDepends = [ pkgs.libxcrypt