mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
15 lines
312 B
Nix
15 lines
312 B
Nix
|
{stdenv, fetchurl, pam, openssl}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "pwdutils-3.1.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = ftp://ftp.kernel.org/pub/linux/utils/net/NIS/pwdutils-3.1.3.tar.bz2;
|
||
|
md5 = "b18c601e282d8695cbb5ddd87eaa473c";
|
||
|
};
|
||
|
|
||
|
buildInputs = [pam openssl];
|
||
|
|
||
|
configureFlags = "--disable-ldap";
|
||
|
}
|