2012-06-11 17:45:54 +01:00
|
|
|
{ stdenv, fetchurl, pam, openssl, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-12-17 19:36:07 +00:00
|
|
|
name = "pam_ssh_agent_auth-0.9.4";
|
2012-06-11 17:45:54 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pamsshagentauth/${name}.tar.bz2";
|
2012-12-17 19:36:07 +00:00
|
|
|
sha256 = "1a8cv223f30mvkxnyh9hk6kya0ynkwwkc5nhlz3rcqhxfw0fcva9";
|
2012-06-11 17:45:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pam openssl perl ];
|
|
|
|
|
2012-12-17 19:36:07 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-06-11 17:45:54 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://pamsshagentauth.sourceforge.net/;
|
|
|
|
description = "PAM module for authentication through the SSH agent";
|
|
|
|
};
|
|
|
|
}
|