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