nixpkgs/pkgs/development/libraries/openpam/default.nix

20 lines
567 B
Nix
Raw Normal View History

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