mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
d30ba201bf
https://git.des.dev/OpenPAM/OpenPAM/wiki/Releases-Ximenia https://git.des.dev/OpenPAM/OpenPAM/wiki/Releases-Tabebuia Fixes errata: https://git.des.dev/OpenPAM/OpenPAM/wiki/Errata
32 lines
727 B
Nix
32 lines
727 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "openpam";
|
|
version = "20230627";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/openpam/openpam/Ximenia/openpam-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-DZrI9bVaYkH1Bz8T7/HpVGFCLEWsGjBEXX4QaOkdtP0=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
__structuredAttrs = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.openpam.org";
|
|
description = "Open source PAM library that focuses on simplicity, correctness, and cleanliness";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
license = licenses.bsd3;
|
|
};
|
|
})
|