mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
pam_login: Remove
We haven't used/updated this package in years.
This commit is contained in:
parent
87c86f6711
commit
dda16e0c06
@ -1,20 +0,0 @@
|
||||
{stdenv, fetchurl, pam}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pam_login-3.35";
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.suse.com/pub/people/kukuk/pam/pam_login/pam_login-3.35.tar.bz2;
|
||||
sha256 = "1w2hpwjhmwjhf8rg789xpl0hibahqlr3ccivfy3m4kgrm5gf04kv";
|
||||
};
|
||||
|
||||
patches = [ ./sys-stat-h.patch ];
|
||||
|
||||
# To overcome a gcc 4.4 warning:
|
||||
# "#ident is a deprecated GCC extension"
|
||||
postPatch = ''
|
||||
sed -i s/-Werror// configure
|
||||
'';
|
||||
|
||||
buildInputs = [pam];
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
Include the needed <sys/stat.h> since recent glibc is stricter about that.
|
||||
|
||||
--- pam_login-3.35/src/login.c~ 2007-05-04 14:07:49.000000000 +0200
|
||||
+++ pam_login-3.35/src/login.c 2010-04-27 11:38:13.000000000 +0200
|
||||
@@ -47,6 +47,7 @@
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
+#include <sys/stat.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/resource.h>
|
@ -9238,8 +9238,6 @@ let
|
||||
|
||||
pam_ldap = callPackage ../os-specific/linux/pam_ldap { };
|
||||
|
||||
pam_login = callPackage ../os-specific/linux/pam_login { };
|
||||
|
||||
pam_mount = callPackage ../os-specific/linux/pam_mount { };
|
||||
|
||||
pam_ssh_agent_auth = callPackage ../os-specific/linux/pam_ssh_agent_auth { };
|
||||
|
@ -128,7 +128,6 @@ with import ./release-lib.nix { inherit supportedSystems; };
|
||||
ntp = linux;
|
||||
openssh = linux;
|
||||
openssl = all;
|
||||
pam_login = linux;
|
||||
pan = gtkSupported;
|
||||
par2cmdline = all;
|
||||
pciutils = linux;
|
||||
|
@ -171,7 +171,6 @@ let
|
||||
nss_ldap = linux;
|
||||
nssmdns = linux;
|
||||
ocaml = linux;
|
||||
pam_login = linux;
|
||||
pan = gtkSupported;
|
||||
par2cmdline = all;
|
||||
pciutils = linux;
|
||||
|
Loading…
Reference in New Issue
Block a user