summary refs log blame commit diff
path: root/pkgs/development/libraries/openpam/default.nix
blob: 187f861337568ad56da3f5199f0f36dc4ed12f38 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ];
  };
}