summary refs log tree commit diff
path: root/pkgs/development/libraries/libcredis/default.nix
blob: bfc7fe1d9498a9e9031bbdfa640f3d22b993edea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl }:

stdenv.mkDerivation {
  name = "libcredis-0.2.3";

  src = fetchurl {
    url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/credis/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/archive/p/credis/;
    license = licenses.bsd3; # from homepage
    platforms = platforms.linux;
    maintainers = [ maintainers.bjornfor ];
  };
}