1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/os-specific/linux/pam_ssh_agent_auth/default.nix

28 lines
744 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pam, openssl, perl }:
stdenv.mkDerivation rec {
2013-05-22 11:33:01 -04:00
name = "pam_ssh_agent_auth-0.9.5";
src = fetchurl {
url = "mirror://sourceforge/pamsshagentauth/${name}.tar.bz2";
2013-05-22 11:33:01 -04:00
sha256 = "1aihfyj17nvqhf0d5i0dg2lsly3r24xjyx0sfqpf60s0libkp4y0";
};
patches =
[ # Allow multiple colon-separated authorized keys files to be
# specified in the file= option.
./multiple-key-files.patch
];
buildInputs = [ pam openssl perl ];
2012-12-17 14:36:07 -05:00
enableParallelBuilding = true;
meta = {
homepage = http://pamsshagentauth.sourceforge.net/;
description = "PAM module for authentication through the SSH agent";
2013-05-22 11:29:16 -04:00
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.maintainers.linux;
};
}