1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/development/libraries/ctdb/default.nix

27 lines
773 B
Nix
Raw Normal View History

2015-01-03 01:21:40 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "ctdb-2.5.4";
src = fetchurl {
url = "mirror://samba/ctdb/${name}.tar.gz";
2015-01-03 01:21:40 +00:00
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;
};
}