openpam: init at 20170430

This commit is contained in:
Matthew Bauer
2018-04-10 21:14:06 -05:00
parent 6c064e6b1f
commit c3f3bc3869
2 changed files with 23 additions and 1 deletions
@@ -0,0 +1,18 @@
{ stdenv, buildPackages, hostPlatform, fetchurl, lib }:
stdenv.mkDerivation rec {
name = "openpam-${version}";
version = "20170430";
src = fetchurl {
url = "mirror://sourceforge/openpam/openpam/Resedacea/${name}.tar.gz";
sha256 = "0pz8kf9mxj0k8yp8jgmhahddz58zv2b7gnyjwng75xgsx4i55xi2";
};
meta = {
homepage = https://www.openpam.org;
description = "An open source PAM library that focuses on simplicity, correctness, and cleanliness";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ matthewbauer ];
};
}