vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / os-specific / linux / pam_ccreds / default.nix
blob1921193d70311a61276e281086c21a71fac64636
1 {lib, stdenv, fetchurl, pam, openssl, db}:
3 stdenv.mkDerivation rec {
4   pname = "pam_ccreds";
5   version = "10";
7   src = fetchurl {
8     url = "https://www.padl.com/download/pam_ccreds-${version}.tar.gz";
9     sha256 = "1h7zyg1b1h69civyvrj95w22dg0y7lgw3hq4gqkdcg35w1y76fhz";
10   };
11   patchPhase = ''
12     sed 's/-o root -g root//' -i Makefile.in
13   '';
15   buildInputs = [ pam openssl db ];
17   meta = with lib; {
18     homepage = "https://www.padl.com/OSS/pam_ccreds.html";
19     description = "PAM module to locally authenticate using an enterprise identity when the network is unavailable";
20     mainProgram = "ccreds_chkpwd";
21     license = licenses.gpl2Only;
22     platforms = platforms.linux;
23   };