mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
30 lines
870 B
Nix
30 lines
870 B
Nix
{ stdenv, fetchurl, pkgconfig, libu2f-host, libu2f-server, pam }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pam_u2f-${version}";
|
|
version = "1.0.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://developers.yubico.com/pam-u2f/Releases/${name}.tar.gz";
|
|
sha256 = "189j0wgx6fs146vfp88djqpl1flpfb3962l1a2marlp6d12jwm3i";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libu2f-host libu2f-server pam ];
|
|
|
|
# Fix the broken include in 1.0.1
|
|
CFLAGS = "-I${libu2f-host}/include/u2f-host";
|
|
|
|
preConfigure = ''
|
|
configureFlagsArray+=("--with-pam-dir=$out/lib/security")
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://developers.yubico.com/pam-u2f/;
|
|
description = "A PAM module for allowing authentication with a U2F device";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ philandstuff ];
|
|
};
|
|
}
|