fefa2749a5
Closes NixOs/nixpkgs#17911
29 lines
785 B
Nix
29 lines
785 B
Nix
{ stdenv, fetchurl, pam, openssl, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "duo-unix-${version}";
|
|
version = "1.9.19";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.duosecurity.com/duo_unix-${version}.tar.gz";
|
|
sha256 = "02hvayknj0kvdik4mqm9j9isqzxk0f992i9v274s27891xqgj8rd";
|
|
};
|
|
|
|
buildInputs = [ pam openssl zlib ];
|
|
configureFlags =
|
|
[ "--with-pam=$(out)/lib/security"
|
|
"--prefix=$(out)"
|
|
"--sysconfdir=$(out)/etc/duo"
|
|
"--with-openssl=${openssl.dev}"
|
|
"--enable-lib64=no"
|
|
];
|
|
|
|
meta = {
|
|
description = "Duo Security Unix login integration";
|
|
homepage = "https://duosecurity.com";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
};
|
|
}
|