mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pam_ldap: 183 -> 186
This commit is contained in:
parent
f520031ee6
commit
1a4ce79a0d
1 changed files with 11 additions and 6 deletions
|
@ -1,18 +1,23 @@
|
|||
{stdenv, fetchurl, pam, openldap}:
|
||||
|
||||
{ stdenv, fetchurl, pam, openldap, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pam_ldap-183";
|
||||
|
||||
name = "pam_ldap-186";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.padl.com/download/${name}.tar.gz";
|
||||
sha256 = "1l0mlwvas9dnsfcgbszbzq3bzhdkibn1c3x15fczq3i82faf5g5a";
|
||||
sha256 = "0lv4f7hc02jrd2l3gqxd247qq62z11sp3fafn8lgb8ymb7aj5zn8";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs ./vers_string
|
||||
'';
|
||||
|
||||
preInstall = "
|
||||
substituteInPlace Makefile --replace '-o root -g root' ''
|
||||
";
|
||||
|
||||
buildInputs = [pam openldap];
|
||||
nativeBuildInputs = [ perl ];
|
||||
buildInputs = [ pam openldap ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.padl.com/OSS/pam_ldap.html;
|
||||
|
|
Loading…
Reference in a new issue