diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-04-11 17:56:06 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-04-11 23:48:04 +0200 |
commit | 2d1f79229cb28505c3aab6dc0d6d7bab864bd406 (patch) | |
tree | 8d32a10036c7d350665f4167ba7e4387d5c1c3d6 /gnu/packages/lxqt.scm | |
parent | 7eee37cd56595628ebf3829f1b8b6d526204818c (diff) | |
download | patches-2d1f79229cb28505c3aab6dc0d6d7bab864bd406.tar patches-2d1f79229cb28505c3aab6dc0d6d7bab864bd406.tar.gz |
gnu: pcmanfm-qt: Remove obsolete workaround.
* gnu/packages/lxqt.scm (pcmanfm-qt)[inputs]: Remove GLIB:BIN.
[arguments]: Remove phase 'wrap-glib'.
Diffstat (limited to 'gnu/packages/lxqt.scm')
-rw-r--r-- | gnu/packages/lxqt.scm | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index a440491633..a5a15e583b 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -994,8 +994,7 @@ components to build desktop file managers which belongs to LXDE.") (base32 "0x3c25inlxll965xszx37mnl5gp3smm2h7x04f67z0qlh3vsbrjq")))) (build-system cmake-build-system) (inputs - `(("glib:bin" ,glib "bin") - ("libfm-qt" ,libfm-qt) + `(("libfm-qt" ,libfm-qt) ("qtbase" ,qtbase) ("qtx11extras" ,qtx11extras))) (native-inputs @@ -1011,17 +1010,7 @@ components to build desktop file managers which belongs to LXDE.") (substitute* '("autostart/CMakeLists.txt") (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}") "DESTINATION \"etc/xdg")) - #t)) - (add-after 'install 'wrap-glib - (lambda* (#:key outputs inputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (glib (assoc-ref inputs "glib:bin")) - (gio-exe-path (string-append glib "/bin/gio-launch-desktop"))) - (if (file-exists? gio-exe-path) - (wrap-program (string-append out "/bin/pcmanfm-qt") - `("GIO_LAUNCH_DESKTOP" = (,gio-exe-path))) - (error "could not find gio-launch-desktop")) - #t)))))) + #t))))) (home-page "https://lxqt.org/") (synopsis "File manager and desktop icon manager") (description "PCManFM-Qt is the Qt port of PCManFM, the file manager of |