mailmanPackages.python.pkgs.hiredis: fix override

error: fetchFromGitHub requires one of either `rev` or `tag` to be provided (not both).

Fixes: 0cd04d3036 ("treewide: migrate fetchgit `rev = "refs/tags/..."` to `tag`")
This commit is contained in:
Alyssa Ross
2025-01-17 16:06:17 +01:00
parent 238aec2d7c
commit b681022ae8
+1 -1
View File
@@ -24,7 +24,7 @@ lib.fix (self: python3.override {
hiredis = super.hiredis.overrideAttrs (new: { src, ... }: {
version = "3.1.0";
src = src.override {
rev = "refs/tags/v${new.version}";
tag = new.version;
hash = "sha256-ID5OJdARd2N2GYEpcYOpxenpZlhWnWr5fAClAgqEgGg=";
};
});