depot/third_party/nixpkgs/pkgs/tools/security/pamtester/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
523 B
Nix

{ stdenv, fetchurl, pam }:
stdenv.mkDerivation rec {
name = "pamtester-0.1.2";
src = fetchurl {
url = "mirror://sourceforge/pamtester/${name}.tar.gz";
sha256 = "1mdj1wj0adcnx354fs17928yn2xfr1hj5mfraq282dagi873sqw3";
};
buildInputs = [ pam ];
meta = with stdenv.lib; {
description = "Utility program to test the PAM facility";
homepage = "http://pamtester.sourceforge.net/";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}