1{ stdenv, fetchurl, pam, openssl, perl }:
2
3stdenv.mkDerivation rec {
4 name = "pam_ssh_agent_auth-0.10.3";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/pamsshagentauth/${name}.tar.bz2";
8 sha256 = "0qx78x7nvqdscyp04hfijl4rgyf64xy03prr28hipvgasrcd6lrw";
9 };
10
11 patches =
12 [ # Allow multiple colon-separated authorized keys files to be
13 # specified in the file= option.
14 ./multiple-key-files.patch
15 ];
16
17 buildInputs = [ pam openssl perl ];
18
19 enableParallelBuilding = true;
20
21 meta = {
22 homepage = http://pamsshagentauth.sourceforge.net/;
23 description = "PAM module for authentication through the SSH agent";
24 maintainers = [ stdenv.lib.maintainers.eelco ];
25 platforms = stdenv.lib.platforms.linux;
26 };
27}