mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
More metadata
svn path=/nixpkgs/trunk/; revision=23166
This commit is contained in:
parent
5ee59b9f2e
commit
c5e44e6829
@ -16,4 +16,9 @@ stdenv.mkDerivation rec {
|
||||
makeFlags = "DESTDIR= LIBDIR=$(out)/lib SBINDIR=$(out)/sbin CONFDIR=$(out)/etc DOCDIR=$(out)/share/doc MANDIR=$(out)/share/man";
|
||||
|
||||
buildInputs = [bison flex db4];
|
||||
|
||||
meta = {
|
||||
homepage =
|
||||
http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2;
|
||||
};
|
||||
}
|
||||
|
@ -19,4 +19,10 @@ stdenv.mkDerivation {
|
||||
preConfigure = ''
|
||||
configureFlags="$configureFlags --includedir=$out/include/security"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://ftp.kernel.org/pub/linux/libs/pam/;
|
||||
description = "Pluggable Authentication Modules, a flexible mechanism for authenticating user";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -1,10 +1,10 @@
|
||||
{stdenv, fetchurl, pam, openldap}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pam_ldap-183";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.padl.com/download/pam_ldap-183.tar.gz;
|
||||
url = "http://www.padl.com/download/${name}.tar.gz";
|
||||
md5 = "c0ad81e9d9712ddc6599a6e7a1688778";
|
||||
};
|
||||
|
||||
@ -13,4 +13,15 @@ stdenv.mkDerivation {
|
||||
";
|
||||
|
||||
buildInputs = [pam openldap];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.padl.com/OSS/pam_ldap.html;
|
||||
description = "LDAP backend for PAM";
|
||||
longDescription = ''
|
||||
The pam_ldap module provides the means for Solaris and Linux servers and
|
||||
workstations to authenticate against LDAP directories, and to change their
|
||||
passwords in the directory.'';
|
||||
license = "LGPL";
|
||||
inherit (pam.meta) platforms;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user