2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchgit, openldap, openssl, popt, glib, ncurses, readline, pkgconfig, cyrus_sasl, autoconf, automake }:
|
2013-11-27 23:15:14 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ldapvi";
|
2013-11-27 23:15:14 +00:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ openldap openssl popt glib ncurses readline cyrus_sasl autoconf automake ];
|
2013-11-27 23:15:14 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
2015-01-13 16:44:24 +00:00
|
|
|
cd ldapvi
|
2013-11-27 23:15:14 +00:00
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Interactive LDAP client for Unix terminals";
|
|
|
|
longDescription = ''
|
|
|
|
ldapvi is an interactive LDAP client for Unix terminals. Using it, you
|
|
|
|
can update LDAP entries with a text editor.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.lichteblau.com/ldapvi/";
|
2013-11-27 23:15:14 +00:00
|
|
|
license = licenses.gpl2;
|
2016-05-17 12:57:28 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2013-11-27 23:15:14 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|