1{ lib, stdenv, fetchurl, pam }:
2
3stdenv.mkDerivation rec {
4 pname = "pamtester";
5 version = "0.1.2";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/pamtester/pamtester-${version}.tar.gz";
9 sha256 = "1mdj1wj0adcnx354fs17928yn2xfr1hj5mfraq282dagi873sqw3";
10 };
11
12 buildInputs = [ pam ];
13
14 meta = with lib; {
15 description = "Utility program to test the PAM facility";
16 homepage = "https://pamtester.sourceforge.net/";
17 license = licenses.bsd3;
18 platforms = platforms.linux;
19 maintainers = with maintainers; [ abbradar ];
20 };
21}