summary refs log tree commit diff
path: root/pkgs/development/libraries/openpam/default.nix
blob: da74600d89bff632132124b5bedd75ff0e087f9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv, fetchFromGitea, autoreconfHook, perl, pkg-config }:

stdenv.mkDerivation rec {
  pname = "openpam";
  version = "20190224";

  src = fetchFromGitea {
    domain = "git.des.dev";
    owner = "OpenPAM";
    repo = "OpenPAM";
    rev = "openpam-${version}";
    sha256 = "03jxfpl30aw8x8nmir00cl21abm2h9kjvg5q3ipxiwlffndjiny0";
  };

  nativeBuildInputs = [ autoreconfHook perl pkg-config ];

  meta = with lib; {
    homepage = "https://www.openpam.org";
    description = "An open source PAM library that focuses on simplicity, correctness, and cleanliness";
    platforms = platforms.unix;
    maintainers = with maintainers; [ matthewbauer ];
    license = licenses.bsd3;
  };
}