libcredis: new package
libcredis is a client library for Redis (key-value database). (libcredis is an optional dependency of collectd.) Homepage: https://code.google.com/p/credis/
This commit is contained in:
parent
ad477c77ff
commit
9ff20ca43f
29
pkgs/development/libraries/libcredis/default.nix
Normal file
29
pkgs/development/libraries/libcredis/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libcredis-0.2.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://credis.googlecode.com/files/credis-0.2.3.tar.gz";
|
||||||
|
sha256 = "1l3hlw9rrc11qggbg9a2303p3bhxxx2vqkmlk8avsrbqw15r1ayr";
|
||||||
|
};
|
||||||
|
|
||||||
|
# credis build system has no install actions, provide our own.
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p "$out/bin"
|
||||||
|
mkdir -p "$out/lib"
|
||||||
|
mkdir -p "$out/include"
|
||||||
|
|
||||||
|
cp -v credis-test "$out/bin/"
|
||||||
|
cp -v *.a *.so "$out/lib/"
|
||||||
|
cp -v *.h "$out/include/"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "C client library for Redis (key-value database)";
|
||||||
|
homepage = https://code.google.com/p/credis/;
|
||||||
|
license = licenses.bsd3; # from homepage
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.bjornfor ];
|
||||||
|
};
|
||||||
|
}
|
@ -5073,6 +5073,8 @@ let
|
|||||||
|
|
||||||
libcangjie = callPackage ../development/libraries/libcangjie { };
|
libcangjie = callPackage ../development/libraries/libcangjie { };
|
||||||
|
|
||||||
|
libcredis = callPackage ../development/libraries/libcredis { };
|
||||||
|
|
||||||
libctemplate = callPackage ../development/libraries/libctemplate { };
|
libctemplate = callPackage ../development/libraries/libctemplate { };
|
||||||
|
|
||||||
libcue = callPackage ../development/libraries/libcue { };
|
libcue = callPackage ../development/libraries/libcue { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user