My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/security/duo-unix/default.nix

28 lines
758 B

{ lib, stdenv, fetchurl, pam, openssl, zlib }:
stdenv.mkDerivation rec {
pname = "duo-unix";
version = "1.12.0";
src = fetchurl {
url = "https://dl.duosecurity.com/duo_unix-${version}.tar.gz";
sha256 = "sha256-i7oAmNjXkGn1MCn5EBmidMY/u3h/rzRAHCD4uhVGV/Q=";
};
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 = lib.licenses.gpl2;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.thoughtpolice ];
};
}