Skip to content

Commit 7a52c8d

Browse files
committed
resp-app: don't replace already present patches in rdbtools override
1 parent eb03e6c commit 7a52c8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/applications/misc/resp-app/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
let
2222
rdbtools-patched = rdbtools.overridePythonAttrs (oldAttrs: {
2323
# Add required additional flag for resp-app
24-
patches = [
24+
patches = oldAttrs.patches or [ ] ++ [
2525
(fetchpatch {
2626
name = "Add-flag-to-parse-only-key-names.patch";
2727
url = "https://github.com/uglide/redis-rdb-tools/commit/b74946e6fbca589947ef0186429d5ce45a074b87.patch";

0 commit comments

Comments
 (0)