Files
nixpkgs/pkgs/by-name/li/libcredis/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

36 lines
900 B
Nix

{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "libcredis";
version = "0.2.3";
src = fetchurl {
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/credis/credis-${version}.tar.gz";
sha256 = "1l3hlw9rrc11qggbg9a2303p3bhxxx2vqkmlk8avsrbqw15r1ayr";
};
# credits 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)";
mainProgram = "credis-test";
homepage = "https://code.google.com/archive/p/credis/";
license = licenses.bsd3; # from homepage
platforms = platforms.all;
maintainers = [ maintainers.bjornfor ];
};
}