From 9ecdc7c1ed89170840d46ad80a4e579a6d960702 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sun, 9 May 2021 00:06:52 +0200 Subject: [PATCH] overlays: add transgui-fix-duplicate-status Upstream is being slow in merging the patch... --- overlays/default.nix | 2 +- overlays/transgui-fix-duplicate-status/default.nix | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 overlays/transgui-fix-duplicate-status/default.nix diff --git a/overlays/default.nix b/overlays/default.nix index 413c3b4..d52dcd3 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,3 +1,3 @@ { - # FIXME: add overlays + transgui-fix-duplicate-status = import ./transgui-fix-duplicate-status; } diff --git a/overlays/transgui-fix-duplicate-status/default.nix b/overlays/transgui-fix-duplicate-status/default.nix new file mode 100644 index 0000000..6190306 --- /dev/null +++ b/overlays/transgui-fix-duplicate-status/default.nix @@ -0,0 +1,11 @@ +final: prev: +{ + transgui = prev.transgui.overrideAttrs (oldAttrs: { + patches = [ + (final.fetchpatch { + url = "https://patch-diff.githubusercontent.com/raw/transmission-remote-gui/transgui/pull/1354.patch"; + sha256 = "sha256-Q4DAduqnTtNI0Zw9NIWpE8L0G8RusvPbZ3iW29k7XXA="; + }) + ]; + }); +}