fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / to / tokyotyrant / package.nix
blobb82d761db158957492d718d108ce664cc4602669
2   fetchurl,
3   lib,
4   stdenv,
5   tokyocabinet,
6   pkg-config,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "tokyotyrant";
11   version = "1.1.41";
13   src = fetchurl {
14     url = "https://fallabs.com/tokyotyrant/tokyotyrant-${version}.tar.gz";
15     sha256 = "13xqcinhydqmh7231qlir6pymacjwcf98drybkhd9597kzxp1bs2";
16   };
18   nativeBuildInputs = [ pkg-config ];
19   buildInputs = [ tokyocabinet ];
21   doCheck = false; # FIXME
23   meta = {
24     description = "Network interface of the Tokyo Cabinet DBM";
26     longDescription = ''
27       Tokyo Tyrant is a package of network interface to the DBM called
28       Tokyo Cabinet.  Though the DBM has high performance, you might
29       bother in case that multiple processes share the same database, or
30       remote processes access the database.  Thus, Tokyo Tyrant is
31       provided for concurrent and remote connections to Tokyo Cabinet.  It
32       is composed of the server process managing a database and its access
33       library for client applications.
35       Tokyo Tyrant is written in the C language, and provided as API of C,
36       Perl, and Ruby.  Tokyo Tyrant is available on platforms which have
37       API conforming to C99 and POSIX.  Tokyo Tyrant is a free software
38       licensed under the GNU Lesser General Public License.
39     '';
41     homepage = "https://fallabs.com/tokyotyrant/";
43     license = lib.licenses.lgpl21Plus;
45     platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice
46     maintainers = [ ];
47   };