File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
pkgs/by-name/gu/guile-redis Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments