1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 02:24:27 +00:00
nixpkgs/pkgs/development/libraries/libcredis/default.nix

31 lines
859 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2021-06-20 15:15:21 +01:00
stdenv.mkDerivation rec {
pname = "libcredis";
version = "0.2.3";
src = fetchurl {
2021-06-20 15:15:21 +01:00
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/credis/credis-${version}.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 lib; {
description = "C client library for Redis (key-value database)";
homepage = "https://code.google.com/archive/p/credis/";
license = licenses.bsd3; # from homepage
2021-03-11 17:37:03 +00:00
platforms = platforms.all;
maintainers = [ maintainers.bjornfor ];
};
}