tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
wmic-bin: fix by switching to libxcrypt-legacy
Vladimír Čunát
2 years ago
2fb36b81
0a9aa498
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
servers
monitoring
plugins
wmic-bin.nix
+2
-2
pkgs/servers/monitoring/plugins/wmic-bin.nix
···
1
1
-
{ stdenv, lib, fetchFromGitHub, autoPatchelfHook, popt, libxcrypt }:
1
1
+
{ stdenv, lib, fetchFromGitHub, autoPatchelfHook, popt, libxcrypt-legacy }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "wmic-bin";
···
11
11
sha256 = "1w1mdbiwz37wzry1q38h8dyjaa6iggmsb9wcyhhlawwm1vj50w48";
12
12
};
13
13
14
14
-
buildInputs = [ popt libxcrypt ];
14
14
+
buildInputs = [ popt libxcrypt-legacy ];
15
15
16
16
nativeBuildInputs = [ autoPatchelfHook ];
17
17