forked from mirrors/nixpkgs
Add Tokyo-Tyrant, the network interface to Tokyo-Cabinet.
svn path=/nixpkgs/trunk/; revision=30728
This commit is contained in:
parent
de5d98eff8
commit
2585033ca6
pkgs
41
pkgs/development/libraries/tokyo-tyrant/default.nix
Normal file
41
pkgs/development/libraries/tokyo-tyrant/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{ fetchurl, stdenv, tokyocabinet, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "tokyotyrant-1.1.41";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://fallabs.com/tokyotyrant/${name}.tar.gz";
|
||||||
|
sha256 = "13xqcinhydqmh7231qlir6pymacjwcf98drybkhd9597kzxp1bs2";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildNativeInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ tokyocabinet ];
|
||||||
|
|
||||||
|
doCheck = false; # FIXME
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Network interface of the Tokyo Cabinet DBM";
|
||||||
|
|
||||||
|
longDescription =
|
||||||
|
'' Tokyo Tyrant is a package of network interface to the DBM called
|
||||||
|
Tokyo Cabinet. Though the DBM has high performance, you might
|
||||||
|
bother in case that multiple processes share the same database, or
|
||||||
|
remote processes access the database. Thus, Tokyo Tyrant is
|
||||||
|
provided for concurrent and remote connections to Tokyo Cabinet. It
|
||||||
|
is composed of the server process managing a database and its access
|
||||||
|
library for client applications.
|
||||||
|
|
||||||
|
Tokyo Tyrant is written in the C language, and provided as API of C,
|
||||||
|
Perl, and Ruby. Tokyo Tyrant is available on platforms which have
|
||||||
|
API conforming to C99 and POSIX. Tokyo Tyrant is a free software
|
||||||
|
licensed under the GNU Lesser General Public License.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = http://fallabs.com/tokyotyrant/;
|
||||||
|
|
||||||
|
license = "LGPLv2.1+";
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
||||||
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4597,6 +4597,7 @@ let
|
||||||
tnt = callPackage ../development/libraries/tnt { };
|
tnt = callPackage ../development/libraries/tnt { };
|
||||||
|
|
||||||
tokyocabinet = callPackage ../development/libraries/tokyo-cabinet { };
|
tokyocabinet = callPackage ../development/libraries/tokyo-cabinet { };
|
||||||
|
tokyotyrant = callPackage ../development/libraries/tokyo-tyrant { };
|
||||||
|
|
||||||
tremor = callPackage ../development/libraries/tremor { };
|
tremor = callPackage ../development/libraries/tremor { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue