mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
openpam: 20170430 -> 20230627
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
This commit is contained in:
parent
e66447ad4d
commit
d30ba201bf
@ -1,14 +1,26 @@
|
||||
{ stdenv, fetchurl, lib }:
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
autoreconfHook,
|
||||
pkg-config,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "openpam";
|
||||
version = "20170430";
|
||||
version = "20230627";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/openpam/openpam/Resedacea/${pname}-${version}.tar.gz";
|
||||
sha256 = "0pz8kf9mxj0k8yp8jgmhahddz58zv2b7gnyjwng75xgsx4i55xi2";
|
||||
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";
|
||||
@ -16,4 +28,4 @@ stdenv.mkDerivation rec {
|
||||
maintainers = with maintainers; [ matthewbauer ];
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user