diff options
author | tv <tv@krebsco.de> | 2021-05-20 10:44:29 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-05-20 11:19:59 +0200 |
commit | f81103811a5b890f3fdbb7e08dcf2c7fbc53ed7a (patch) | |
tree | 2c2d4cb5bf4c7eec954c4a841a410f16506a1a40 /tv/5pkgs | |
parent | 61b4682828fd5176ee975a3d7d8e1a9c95a7c784 (diff) |
tv rxvt_unicode: RIP; upstream has caught up
Diffstat (limited to 'tv/5pkgs')
-rw-r--r-- | tv/5pkgs/override/default.nix | 4 | ||||
-rw-r--r-- | tv/5pkgs/override/rxvt_unicode.nix | 17 |
2 files changed, 0 insertions, 21 deletions
diff --git a/tv/5pkgs/override/default.nix b/tv/5pkgs/override/default.nix index cf99e03..e6aae0f 100644 --- a/tv/5pkgs/override/default.nix +++ b/tv/5pkgs/override/default.nix @@ -19,8 +19,4 @@ self: super: { nix-prefetch-github = self.python3Packages.callPackage ./nix-prefetch-github.nix {}; - - rxvt_unicode = self.callPackage ./rxvt_unicode.nix { - rxvt_unicode = super.rxvt_unicode; - }; } diff --git a/tv/5pkgs/override/rxvt_unicode.nix b/tv/5pkgs/override/rxvt_unicode.nix deleted file mode 100644 index 53aaf06..0000000 --- a/tv/5pkgs/override/rxvt_unicode.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ fetchurl, rxvt_unicode }: -rxvt_unicode.overrideAttrs (old: { - patches = old.patches ++ [ - (fetchurl { - name = "rxvt-unicode.cancel-running-selection-request.patch"; - url = "https://cgit.krebsco.de/rxvt-unicode/rawdiff/?id=15f3f94&id2=15f3f94^"; - sha256 = "1c7jq8phl85d2f581b4mc6fkmr2nv9n44qjjs4idi51sd2hs7sxw"; - }) - - # Fix segfault when calling editor-input from XMonad. - (fetchurl { - name = "rxvt-unicode.no-perl_destruct.patch"; - url = "https://cgit.krebsco.de/rxvt-unicode/rawdiff/?id=d63f96a&id2=d63f96a^"; - sha256 = "0fq9w4fq8mw05jk9bblzlh1x51m2cmk62xbc4c1mbiqagjmsi9f8"; - }) - ]; -}) |