Skip to content

Commit 0fe48f3

Browse files
authored
guile-redis: init at 2.2.0 (#389811)
2 parents 639aae7 + 1bf0add commit 0fe48f3

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
lib,
3+
stdenv,
4+
fetchFromGitHub,
5+
autoreconfHook,
6+
guile,
7+
pkg-config,
8+
nix-update-script,
9+
}:
10+
11+
stdenv.mkDerivation (finalAttrs: {
12+
pname = "guile-redis";
13+
version = "2.2.0";
14+
15+
src = fetchFromGitHub {
16+
owner = "aconchillo";
17+
repo = "guile-redis";
18+
tag = finalAttrs.version;
19+
hash = "sha256-0lObXRBn4yZi2S+MeesT1Z/vJWb907BHknA4hOQOYzE=";
20+
};
21+
22+
strictDeps = true;
23+
24+
nativeBuildInputs = [
25+
autoreconfHook
26+
guile
27+
pkg-config
28+
];
29+
30+
buildInputs = [ guile ];
31+
32+
passthru.updateScript = nix-update-script { };
33+
34+
meta = {
35+
description = "Redis module for Guile";
36+
homepage = "https://github.com/aconchillo/guile-redis";
37+
changelog = "https://github.com/aconchillo/guile-redis/releases/tag/${finalAttrs.version}";
38+
license = lib.licenses.gpl3Plus;
39+
maintainers = with lib.maintainers; [ ethancedwards8 ];
40+
platforms = guile.meta.platforms;
41+
};
42+
})

0 commit comments

Comments
 (0)