2024-05-19 05:44:48 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchurl,
|
|
|
|
autoreconfHook,
|
|
|
|
pkg-config,
|
|
|
|
}:
|
2018-04-11 03:12:44 +01:00
|
|
|
|
2024-05-19 05:44:48 +01:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "openpam";
|
2024-05-19 05:44:48 +01:00
|
|
|
version = "20230627";
|
2018-04-11 03:12:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-05-19 05:44:48 +01:00
|
|
|
url = "mirror://sourceforge/openpam/openpam/Ximenia/openpam-${finalAttrs.version}.tar.gz";
|
|
|
|
hash = "sha256-DZrI9bVaYkH1Bz8T7/HpVGFCLEWsGjBEXX4QaOkdtP0=";
|
2018-04-11 03:12:44 +01:00
|
|
|
};
|
|
|
|
|
2024-05-19 05:44:48 +01:00
|
|
|
strictDeps = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
|
|
|
|
__structuredAttrs = true;
|
|
|
|
|
2018-10-25 21:07:31 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.openpam.org";
|
2024-06-07 08:46:46 +01:00
|
|
|
description = "Open source PAM library that focuses on simplicity, correctness, and cleanliness";
|
2018-10-25 21:07:31 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
|
|
license = licenses.bsd3;
|
2018-04-11 03:12:44 +01:00
|
|
|
};
|
2024-05-19 05:44:48 +01:00
|
|
|
})
|