mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
13 lines
312 B
Nix
13 lines
312 B
Nix
{ stdenv, cracklib, fetchurl, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libpwquality-1.2.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://fedorahosted.org/releases/l/i/libpwquality/${name}.tar.bz2";
|
|
sha256 = "0sjiabvl5277nfxyy96jdz65a0a3pmkkwrfbziwgik83gg77j75i";
|
|
};
|
|
|
|
buildInputs = [ cracklib python ];
|
|
}
|