2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, lib }:
|
2018-04-11 03:12:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "openpam";
|
2018-04-11 03:12:44 +01:00
|
|
|
version = "20170430";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/openpam/openpam/Resedacea/${pname}-${version}.tar.gz";
|
2018-04-11 03:12:44 +01:00
|
|
|
sha256 = "0pz8kf9mxj0k8yp8jgmhahddz58zv2b7gnyjwng75xgsx4i55xi2";
|
|
|
|
};
|
|
|
|
|
2018-10-25 21:07:31 +01:00
|
|
|
meta = with lib; {
|
2018-04-11 03:12:44 +01:00
|
|
|
homepage = https://www.openpam.org;
|
|
|
|
description = "An 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
|
|
|
};
|
|
|
|
}
|