29 lines
775 B
Nix
29 lines
775 B
Nix
|
{ stdenv, fetchurl, pam, openssl, zlib }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "duo-unix";
|
||
|
version = "1.11.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://dl.duosecurity.com/duo_unix-${version}.tar.gz";
|
||
|
sha256 = "097i2dsnbndpnyc4nx1j76qkx1bxwwlxnzmp1h3j4raghddgiq0g";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|