2012-06-11 18:45:54 +02:00
|
|
|
{ stdenv, fetchurl, pam, openssl, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-22 17:33:01 +02:00
|
|
|
name = "pam_ssh_agent_auth-0.9.5";
|
2012-06-11 18:45:54 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pamsshagentauth/${name}.tar.bz2";
|
2013-05-22 17:33:01 +02:00
|
|
|
sha256 = "1aihfyj17nvqhf0d5i0dg2lsly3r24xjyx0sfqpf60s0libkp4y0";
|
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";
|
2013-05-22 17:29:16 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2013-05-23 15:24:15 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-06-11 18:45:54 +02:00
|
|
|
};
|
|
|
|
}
|