python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / pamtester / default.nix
blobface92a00af36b2cb2a83abf04caaab9b74baf4b
1 { lib, stdenv, fetchurl, pam }:
3 stdenv.mkDerivation rec {
4   pname = "pamtester";
5   version = "0.1.2";
7   src = fetchurl {
8     url = "mirror://sourceforge/pamtester/pamtester-${version}.tar.gz";
9     sha256 = "1mdj1wj0adcnx354fs17928yn2xfr1hj5mfraq282dagi873sqw3";
10   };
12   buildInputs = [ pam ];
14   meta = with lib; {
15     description = "Utility program to test the PAM facility";
16     homepage = "http://pamtester.sourceforge.net/";
17     license = licenses.bsd3;
18     platforms = platforms.linux;
19     maintainers = with maintainers; [ abbradar ];
20   };