kyotocabinet: Add derivation

This commit is contained in:
William A. Kennington III 2014-11-14 21:53:33 -08:00
parent 9458bc6ee3
commit 7a318d5f73
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
name = "kyotocabinet-1.2.76";
src = fetchurl {
url = "http://fallabs.com/kyotocabinet/pkg/${name}.tar.gz";
sha256 = "0g6js20x7vnpq4p8ghbw3mh9wpqksya9vwhzdx6dnlf354zjsal1";
};
buildInputs = [ zlib ];
meta = with stdenv.lib; {
homepage = http://fallabs.com/kyotocabinet;
description = "a library of routines for managing a database";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}

View File

@ -6911,7 +6911,10 @@ let
tnt = callPackage ../development/libraries/tnt { };
kyotocabinet = callPackage ../development/libraries/kyotocabinet { };
tokyocabinet = callPackage ../development/libraries/tokyo-cabinet { };
tokyotyrant = callPackage ../development/libraries/tokyo-tyrant { };
tremor = callPackage ../development/libraries/tremor { };