mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
* Added pam_devperm.
svn path=/nixpkgs/trunk/; revision=8546
This commit is contained in:
parent
d03cc6bcf3
commit
3833fe53c0
12
pkgs/os-specific/linux/pam_devperm/default.nix
Normal file
12
pkgs/os-specific/linux/pam_devperm/default.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{stdenv, fetchurl, pam}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "pam_devperm-1.6";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://ftp.suse.com/pub/people/kukuk/pam/pam_devperm/pam_devperm-1.6.tar.bz2;
|
||||||
|
sha256 = "0rvndh6yvcgmjnkqxv24pjy3ayy4p8r29w25xscwjfzqmrdyfbpw";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [pam];
|
||||||
|
}
|
@ -2388,6 +2388,10 @@ rec {
|
|||||||
inherit stdenv fetchurl cracklib flex;
|
inherit stdenv fetchurl cracklib flex;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pam_devperm = import ../os-specific/linux/pam_devperm {
|
||||||
|
inherit stdenv fetchurl pam;
|
||||||
|
};
|
||||||
|
|
||||||
pam_ldap = import ../os-specific/linux/pam_ldap {
|
pam_ldap = import ../os-specific/linux/pam_ldap {
|
||||||
inherit stdenv fetchurl pam openldap;
|
inherit stdenv fetchurl pam openldap;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user