nixpkgs/pkgs/tools/security/pamtester/default.nix

22 lines
550 B
Nix
Raw Normal View History

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