mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
ctdb: Remove as it is now part of samba
This commit is contained in:
parent
7fdb95d9a3
commit
7578bbea27
2 changed files with 0 additions and 28 deletions
|
@ -1,26 +0,0 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ctdb-2.5.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://samba/ctdb/${name}.tar.gz";
|
||||
sha256 = "09fb29ngxnh1crsqchykg23bl6s4fifvxwq4gwg1y742mmnjp9fy";
|
||||
};
|
||||
|
||||
buildInputs = [ ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "The trivial database";
|
||||
longDescription =
|
||||
'' TDB is a Trivial Database. In concept, it is very much like GDBM,
|
||||
and BSD's DB except that it allows multiple simultaneous writers and
|
||||
uses locking internally to keep writers from trampling on each
|
||||
other. TDB is also extremely small.
|
||||
'';
|
||||
homepage = http://tdb.samba.org/;
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -7593,8 +7593,6 @@ let
|
|||
|
||||
tcltls = callPackage ../development/libraries/tcltls { };
|
||||
|
||||
ctdb = callPackage ../development/libraries/ctdb { };
|
||||
|
||||
ntdb = callPackage ../development/libraries/ntdb {
|
||||
python = python2;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue