pies: fix build with libxcrypt

This commit is contained in:
Franz Pletz 2022-09-30 01:58:20 +02:00 committed by Martin Weinelt
parent e1f8bfbbd1
commit 77c50b0729
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,4 +1,4 @@
{ fetchurl, lib, stdenv }:
{ fetchurl, lib, stdenv, libxcrypt }:
stdenv.mkDerivation rec {
pname = "pies";
@ -9,6 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "12r7rjjyibjdj08dvwbp0iflfpzl4s0zhn6cr6zj3hwf9gbzgl1g";
};
buildInputs = [ libxcrypt ];
configureFlags = ["--sysconfdir=/etc"];
hardeningDisable = [ "format" ];