diff options
author | Reza Alizadeh Majd <r.majd@pantherx.org> | 2019-08-01 20:29:06 +0430 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-08-22 17:59:30 +0200 |
commit | 403b4e06854728ee857509053ef2b4c87024baea (patch) | |
tree | 5fc192cdc798d6964853fc17c79ea166b498d64a | |
parent | 74a98b5cddd0430dd7229d4045f4885191c624b7 (diff) | |
download | guix-403b4e06854728ee857509053ef2b4c87024baea.tar guix-403b4e06854728ee857509053ef2b4c87024baea.tar.gz |
gnu: Add lxqt-archiver.
* gnu/packages/lxqt.scm (lxqt-archiver): New Variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/lxqt.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index a8699b3d09..e72f5b82d9 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -1245,6 +1245,39 @@ easily publishing them on internet image hosting services.") (license license:gpl2+))) +(define-public lxqt-archiver + (package + (name "lxqt-archiver") + (version "0.0.96") + (source + (origin + (method git-fetch) + (uri (git-reference + (url (string-append "https://github.com/lxqt/" name ".git")) + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09rw774vxj96wcpxxncz6nr9bmw7l4l0kwylmz1saq6rpa2yvn2i")))) + (build-system cmake-build-system) + (inputs + `(("glib" ,glib) + ("json-glib" ,json-glib) + ("libfm-qt" ,libfm-qt) + ("qtbase" ,qtbase) + ("qtx11extras" ,qtx11extras))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("lxqt-build-tools" ,lxqt-build-tools) + ("qttools" ,qttools))) + (arguments + '(#:tests? #f)) + (home-page "https://lxqt.org/") + (synopsis "Simple & lightweight desktop-agnostic Qt file archiver") + (description + "This package provides a Qt graphical interface to archiving programs +like @command{tar} and @command{zip}.") + (license license:gpl2+))) + ;; The LXQt Desktop Environment (define-public lxqt |