a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
21 lines
551 B
Nix
21 lines
551 B
Nix
{ lib, stdenv, fetchurl, pam }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pamtester";
|
|
version = "0.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pamtester/pamtester-${version}.tar.gz";
|
|
sha256 = "1mdj1wj0adcnx354fs17928yn2xfr1hj5mfraq282dagi873sqw3";
|
|
};
|
|
|
|
buildInputs = [ pam ];
|
|
|
|
meta = with lib; {
|
|
description = "Utility program to test the PAM facility";
|
|
homepage = "https://pamtester.sourceforge.net/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|