tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pam_p11: fix on darwin
Dmitry Kalinkin
4 years ago
377cfd90
bf3b862b
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
pam_p11
default.nix
+3
-2
pkgs/os-specific/linux/pam_p11/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, openssl, libp11, pam }:
1
1
+
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, openssl, libp11, pam, libintl }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "pam_p11";
···
12
12
};
13
13
14
14
nativeBuildInputs = [ autoreconfHook pkg-config ];
15
15
-
buildInputs = [ pam openssl libp11 ];
15
15
+
buildInputs = [ pam openssl libp11 ]
16
16
+
++ lib.optionals stdenv.isDarwin [ libintl ];
16
17
17
18
meta = with lib; {
18
19
homepage = "https://github.com/OpenSC/pam_p11";