Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / openpam / default.nix
blob3d1cff05a08596e9044545f10e62450391a72cff
1 { stdenv, fetchurl, lib }:
3 stdenv.mkDerivation rec {
4   pname = "openpam";
5   version = "20170430";
7   src = fetchurl {
8     url = "mirror://sourceforge/openpam/openpam/Resedacea/${pname}-${version}.tar.gz";
9     sha256 = "0pz8kf9mxj0k8yp8jgmhahddz58zv2b7gnyjwng75xgsx4i55xi2";
10   };
12   meta = with lib; {
13     homepage = "https://www.openpam.org";
14     description = "An open source PAM library that focuses on simplicity, correctness, and cleanliness";
15     platforms = platforms.unix;
16     maintainers = with maintainers; [ matthewbauer ];
17     license = licenses.bsd3;
18   };