2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchurl, lib }:
|
2018-04-10 21:12:44 -05:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "openpam";
|
2018-04-10 21:12:44 -05:00
|
|
|
version = "20170430";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/openpam/openpam/Resedacea/${pname}-${version}.tar.gz";
|
2018-04-10 21:12:44 -05:00
|
|
|
sha256 = "0pz8kf9mxj0k8yp8jgmhahddz58zv2b7gnyjwng75xgsx4i55xi2";
|
|
|
|
};
|
|
|
|
|
2018-10-25 22:07:31 +02:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://www.openpam.org";
|
2018-04-10 21:12:44 -05:00
|
|
|
description = "An open source PAM library that focuses on simplicity, correctness, and cleanliness";
|
2018-10-25 22:07:31 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
|
|
license = licenses.bsd3;
|
2018-04-10 21:12:44 -05:00
|
|
|
};
|
|
|
|
}
|