ldb: 1.1.26 -> 1.1.27
Also, strip the modules to prevent a dependency on gcc.
This commit is contained in:
parent
dbb9e2e847
commit
c3bc8b2996
|
@ -3,13 +3,15 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ldb-1.1.26";
|
name = "ldb-1.1.27";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://samba/ldb/${name}.tar.gz";
|
url = "mirror://samba/ldb/${name}.tar.gz";
|
||||||
sha256 = "1rmjv12pf57vga8s5z9p9d90rlfckc1lqjbcp89r83cq5fkwfhw8";
|
sha256 = "1b1mkl5p8swb67s9aswavhzswlib34hpgsv66zgns009paf2df6d";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
python pkgconfig readline tdb talloc tevent popt
|
python pkgconfig readline tdb talloc tevent popt
|
||||||
libxslt docbook_xsl docbook_xml_dtd_42
|
libxslt docbook_xsl docbook_xml_dtd_42
|
||||||
|
@ -24,6 +26,8 @@ stdenv.mkDerivation rec {
|
||||||
"--builtin-libraries=replace"
|
"--builtin-libraries=replace"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
stripDebugList = "bin lib modules";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A LDAP-like embedded database";
|
description = "A LDAP-like embedded database";
|
||||||
homepage = http://ldb.samba.org/;
|
homepage = http://ldb.samba.org/;
|
||||||
|
|
Loading…
Reference in New Issue