mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
various: adopt packages by redis team
This commit is contained in:
parent
6c78180e5a
commit
97b8f17973
13 changed files with 19 additions and 20 deletions
|
|
@ -30,6 +30,8 @@ let
|
|||
|
||||
in
|
||||
{
|
||||
meta.teams = [ lib.teams.redis ];
|
||||
|
||||
imports = [
|
||||
(lib.mkRemovedOptionModule [
|
||||
"services"
|
||||
|
|
|
|||
|
|
@ -19,11 +19,7 @@ let
|
|||
}:
|
||||
makeTest {
|
||||
inherit name;
|
||||
meta.maintainers = [
|
||||
lib.maintainers.das_j
|
||||
lib.maintainers.flokli
|
||||
lib.maintainers.helsinki-Jo
|
||||
];
|
||||
meta.maintainers = lib.teams.redis.members;
|
||||
|
||||
nodes = {
|
||||
machine =
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
homepage = "https://github.com/redis/hiredis";
|
||||
description = "Minimalistic C client for Redis >= 1.2";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ hythera ];
|
||||
platforms = lib.platforms.all;
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -37,10 +37,8 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
homepage = "https://github.com/redis/memtier_benchmark";
|
||||
license = lib.licenses.gpl2Only;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [
|
||||
thoughtpolice
|
||||
hythera
|
||||
];
|
||||
maintainers = with lib.maintainers; [ thoughtpolice ];
|
||||
mainProgram = "memtier_benchmark";
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
license = lib.licenses.agpl3Only;
|
||||
platforms = lib.platforms.all;
|
||||
changelog = "https://github.com/redis/redis/releases/tag/${finalAttrs.version}";
|
||||
maintainers = with lib.maintainers; [ hythera ];
|
||||
mainProgram = "redis-cli";
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -16,5 +16,8 @@ makeSetupHook {
|
|||
simple = callPackage ./test.nix { };
|
||||
python3-valkey = python3Packages.valkey;
|
||||
};
|
||||
meta.license = lib.licenses.mit;
|
||||
meta = {
|
||||
license = lib.licenses.mit;
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
} ./redis-test-hook.sh
|
||||
|
|
|
|||
|
|
@ -177,5 +177,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
tomasajt
|
||||
];
|
||||
platforms = lib.platforms.linux;
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -39,5 +39,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
license = lib.licenses.asl20;
|
||||
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
||||
maintainers = with lib.maintainers; [ wesnel ];
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -117,9 +117,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
description = "High-performance data structure server that primarily serves key/value workloads";
|
||||
license = lib.licenses.bsd3;
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = with lib.maintainers; [
|
||||
debtquity
|
||||
];
|
||||
teams = [ lib.teams.redis ];
|
||||
changelog = "https://github.com/valkey-io/valkey/releases/tag/${finalAttrs.version}";
|
||||
mainProgram = "valkey-cli";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -38,6 +38,6 @@ buildPythonPackage (finalAttrs: {
|
|||
homepage = "https://github.com/redis/hiredis-py";
|
||||
changelog = "https://github.com/redis/hiredis-py/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ hythera ];
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -87,5 +87,6 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/redis/redis-om-python/releases/tag/${src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ natsukium ];
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -73,5 +73,6 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/redis/redis-py/releases/tag/${src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.dotlambda ];
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,9 +49,7 @@ buildPythonPackage (finalAttrs: {
|
|||
changelog = "https://github.com/redis/redis-vl-python/releases/tag/v${finalAttrs.version}";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "rvl";
|
||||
maintainers = with lib.maintainers; [
|
||||
codgician
|
||||
hythera
|
||||
];
|
||||
maintainers = with lib.maintainers; [ codgician ];
|
||||
teams = [ lib.teams.redis ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue