wmic-bin: fix by switching to libxcrypt-legacy

This commit is contained in:
Vladimír Čunát 2023-03-26 09:50:41 +02:00
parent 0a9aa49814
commit 2fb36b81ea
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

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