2012-06-11 18:45:54 +02:00
|
|
|
{ stdenv, fetchurl, pam, openssl, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-12-17 20:36:07 +01:00
|
|
|
name = "pam_ssh_agent_auth-0.9.4";
|
2012-06-11 18:45:54 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pamsshagentauth/${name}.tar.bz2";
|
2012-12-17 20:36:07 +01:00
|
|
|
sha256 = "1a8cv223f30mvkxnyh9hk6kya0ynkwwkc5nhlz3rcqhxfw0fcva9";
|
2012-06-11 18:45:54 +02:00
|
|
|
};
|
|
|
|
|
2012-12-17 20:58:25 +01:00
|
|
|
patches =
|
|
|
|
[ # Allow multiple colon-separated authorized keys files to be
|
|
|
|
# specified in the file= option.
|
|
|
|
./multiple-key-files.patch
|
|
|
|
];
|
|
|
|
|
2012-06-11 18:45:54 +02:00
|
|
|
buildInputs = [ pam openssl perl ];
|
|
|
|
|
2012-12-17 20:36:07 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-06-11 18:45:54 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://pamsshagentauth.sourceforge.net/;
|
|
|
|
description = "PAM module for authentication through the SSH agent";
|
|
|
|
};
|
|
|
|
}
|