summary refs log blame commit diff
path: root/pkgs/development/libraries/openpam/default.nix
blob: b217527269dde2d72699c73bf5bee73d31265fe3 (plain) (tree)
1
2
3
4
5
6
7
8
                          

                         
                    


                       
                                                                                      


                                                                    
                    

                                                                                                        


                                                     

    
{ stdenv, fetchurl, lib }:

stdenv.mkDerivation rec {
  pname = "openpam";
  version = "20170430";

  src = fetchurl {
    url = "mirror://sourceforge/openpam/openpam/Resedacea/${pname}-${version}.tar.gz";
    sha256 = "0pz8kf9mxj0k8yp8jgmhahddz58zv2b7gnyjwng75xgsx4i55xi2";
  };

  meta = with lib; {
    homepage = https://www.openpam.org;
    description = "An open source PAM library that focuses on simplicity, correctness, and cleanliness";
    platforms = platforms.unix;
    maintainers = with maintainers; [ matthewbauer ];
    license = licenses.bsd3;
  };
}