mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
8952d75b0c
fixes build with openssl 1.1
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.20";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.duosecurity.com/duo_unix-${version}.tar.gz";
|
|
sha256 = "0zxrpdbgi8k8jbqg5yxjv3b0lz9kpk89pglwb3lqlvzscbxdv5qj";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|