mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add qbittorrent-nox.
* gnu/packages/bittorrent.scm (qbittorrent-nox): New variable. Signed-off-by: Josselin Poiret <dev@jpoiret.xyz>
This commit is contained in:
parent
d19c7c2791
commit
d845202d35
1 changed files with 17 additions and 0 deletions
|
@ -500,6 +500,23 @@ (define-public qbittorrent
|
|||
features.")
|
||||
(license l:gpl2+)))
|
||||
|
||||
(define-public qbittorrent-nox
|
||||
(let ((base qbittorrent))
|
||||
(package
|
||||
(inherit base)
|
||||
(name "qbittorrent-nox")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
((#:configure-flags configure-flags)
|
||||
#~(append #$configure-flags
|
||||
(list "--disable-gui")))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(delete 'wrap-qt)))))
|
||||
(inputs
|
||||
(modify-inputs (package-inputs base)
|
||||
(delete "qtsvg-5"))))))
|
||||
|
||||
(define-public deluge
|
||||
(package
|
||||
(name "deluge")
|
||||
|
|
Loading…
Reference in a new issue