2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libfido2, pam, openssl }:
|
2015-09-23 06:25:55 +00:00
|
|
|
|
2015-05-03 14:29:42 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "pam_u2f";
|
2022-08-01 04:56:14 +00:00
|
|
|
version = "1.2.1";
|
2015-09-23 06:25:55 +00:00
|
|
|
|
2015-05-03 14:29:42 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://developers.yubico.com/pam-u2f/Releases/${pname}-${version}.tar.gz";
|
2022-08-01 04:56:14 +00:00
|
|
|
sha256 = "sha256-cOdBvKGXtktPvo3R9tV84ritWMp4Y1LFJfPy1EEliUw=";
|
2015-05-03 14:29:42 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-10-11 19:15:54 +00:00
|
|
|
buildInputs = [ libfido2 pam openssl ];
|
2015-09-23 06:25:55 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray+=("--with-pam-dir=$out/lib/security")
|
|
|
|
'';
|
2015-05-03 14:29:42 +00:00
|
|
|
|
2021-06-03 20:55:35 +00:00
|
|
|
# a no-op makefile to prevent building the fuzz targets
|
|
|
|
postConfigure = ''
|
|
|
|
cat > fuzz/Makefile <<EOF
|
|
|
|
all:
|
|
|
|
install:
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://developers.yubico.com/pam-u2f/";
|
2015-05-03 14:29:42 +00:00
|
|
|
description = "A PAM module for allowing authentication with a U2F device";
|
2022-08-12 04:20:00 +00:00
|
|
|
changelog = "https://github.com/Yubico/pam-u2f/raw/pam_u2f-${version}/NEWS";
|
2015-05-03 14:29:42 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ philandstuff ];
|
2022-04-01 19:34:55 +00:00
|
|
|
mainProgram = "pamu2fcfg";
|
2015-05-03 14:29:42 +00:00
|
|
|
};
|
|
|
|
}
|