add ldapvi: interactive LDAP client for Unix terminals. Using it, you can update LDAP entries with a text editor.
This commit is contained in:
parent
65e61d8588
commit
945bcfad30
30
pkgs/tools/misc/ldapvi/default.nix
Normal file
30
pkgs/tools/misc/ldapvi/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchgit, openldap, openssl, popt, glib, ncurses, readline, pkgconfig, cyrus_sasl, autoconf, automake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ldapvi-${version}";
|
||||||
|
version = "0lz1sb5r0y9ypy8d7hm0l2wfa8l69f8ll0i5c78c0apz40nyjqkg";
|
||||||
|
|
||||||
|
# use latest git, it includes some important patches since 2007 release
|
||||||
|
src = fetchgit {
|
||||||
|
url = "http://www.lichteblau.com/git/ldapvi.git";
|
||||||
|
sha256 = "3ef3103030ecb04d7fe80180e3fd490377cf81fb2af96782323fddabc3225030";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ openldap openssl popt glib ncurses readline pkgconfig cyrus_sasl autoconf automake ];
|
||||||
|
|
||||||
|
setSourceRoot = ''
|
||||||
|
sourceRoot=git-export/ldapvi
|
||||||
|
'';
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
./autogen.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "ldapvi is an interactive LDAP client for Unix terminals. Using it, you can update LDAP entries with a text editor";
|
||||||
|
homepage = http://www.lichteblau.com/ldapvi/;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ iElectric ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -1214,6 +1214,8 @@ let
|
|||||||
self = pkgs.nodePackages;
|
self = pkgs.nodePackages;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ldapvi = callPackage ../tools/misc/ldapvi { };
|
||||||
|
|
||||||
ldns = callPackage ../development/libraries/ldns { };
|
ldns = callPackage ../development/libraries/ldns { };
|
||||||
|
|
||||||
lftp = callPackage ../tools/networking/lftp { };
|
lftp = callPackage ../tools/networking/lftp { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user