diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-06 19:32:43 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-06 19:36:40 +0100 |
commit | b4263f12edd11ddc49c509116df11de6ae839ad2 (patch) | |
tree | a23ac1ca18a1091f5b371ea021de381333f60fc8 /gnu/packages/bittorrent.scm | |
parent | b1cf1d44f402cef3fccbb37277554bc7d5dd27d4 (diff) | |
download | guix-b4263f12edd11ddc49c509116df11de6ae839ad2.tar.gz |
gnu: tremc: Fix execution with recent Python.
* gnu/packages/bittorrent.scm (tremc)[source]: Add patch. * gnu/packages/patches/tremc-fix-decodestring.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Reported by gnoo in #guix
Diffstat (limited to 'gnu/packages/bittorrent.scm')
-rw-r--r-- | gnu/packages/bittorrent.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 0dcb1ee991..4a84fbf8f5 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -231,7 +231,8 @@ XML-RPC over SCGI.") (file-name (git-file-name name version)) (sha256 (base32 - "1fqspp2ckafplahgba54xmx0sjidx1pdzyjaqjhz0ivh98dkx2n5")))) + "1fqspp2ckafplahgba54xmx0sjidx1pdzyjaqjhz0ivh98dkx2n5")) + (patches (search-patches "tremc-fix-decodestring.patch")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no test suite |