2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchurl, pam, openssl, zlib }:
|
2014-02-18 06:15:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "duo-unix";
|
2020-05-21 09:30:30 +02:00
|
|
|
version = "1.11.4";
|
2014-02-18 06:15:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://dl.duosecurity.com/duo_unix-${version}.tar.gz";
|
2020-05-21 09:30:30 +02:00
|
|
|
sha256 = "1hqklf6jzrxn5hgh69bbl6962hwwgf06dlrb0ry7n5iy8w8imnsg";
|
2014-02-18 06:15:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pam openssl zlib ];
|
|
|
|
configureFlags =
|
|
|
|
[ "--with-pam=$(out)/lib/security"
|
|
|
|
"--prefix=$(out)"
|
|
|
|
"--sysconfdir=$(out)/etc/duo"
|
2016-04-16 19:44:32 +02:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2014-03-20 20:05:38 +01:00
|
|
|
"--enable-lib64=no"
|
2014-02-18 06:15:18 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Duo Security Unix login integration";
|
|
|
|
homepage = "https://duosecurity.com";
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.thoughtpolice ];
|
2014-02-18 06:15:18 +01:00
|
|
|
};
|
|
|
|
}
|