wmic-bin: fix build with libxcrypt

This commit is contained in:
Martin Weinelt 2022-09-29 17:18:15 +02:00
parent dbf9333f2c
commit 0465c23d9a
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, autoPatchelfHook, popt }:
{ stdenv, lib, fetchFromGitHub, autoPatchelfHook, popt, libxcrypt }:
stdenv.mkDerivation rec {
pname = "wmic-bin";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "1w1mdbiwz37wzry1q38h8dyjaa6iggmsb9wcyhhlawwm1vj50w48";
};
buildInputs = [ popt ];
buildInputs = [ popt libxcrypt ];
nativeBuildInputs = [ autoPatchelfHook ];