1{ stdenv, fetchurl, pam, openssl, perl }:
2
3stdenv.mkDerivation rec {
4 name = "pam_ssh_agent_auth-0.9.5";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/pamsshagentauth/${name}.tar.bz2";
8 sha256 = "1aihfyj17nvqhf0d5i0dg2lsly3r24xjyx0sfqpf60s0libkp4y0";
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}