From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49955) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1htDdZ-0008Gk-2k for guix-patches@gnu.org; Thu, 01 Aug 2019 12:09:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1htDdX-0006H0-1n for guix-patches@gnu.org; Thu, 01 Aug 2019 12:09:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46114) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1htDdW-0006Gh-BM for guix-patches@gnu.org; Thu, 01 Aug 2019 12:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1htDdW-0007Z6-4G for guix-patches@gnu.org; Thu, 01 Aug 2019 12:09:02 -0400 Subject: [bug#36890] [PATCH] gnu: add lxqt-archiver Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49796) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1htDcj-0007tW-Up for guix-patches@gnu.org; Thu, 01 Aug 2019 12:08:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1htDci-0005wy-FR for guix-patches@gnu.org; Thu, 01 Aug 2019 12:08:13 -0400 Received: from [5.230.148.152] (port=63852 helo=Rezas-MacBook-Pro-2.local) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1htDch-0005wB-TO for guix-patches@gnu.org; Thu, 01 Aug 2019 12:08:12 -0400 From: Reza Alizadeh Majd Date: Thu, 1 Aug 2019 20:29:06 +0430 Message-Id: <20190801155906.29506-1-r.majd@pantherx.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36890@debbugs.gnu.org Cc: Reza Alizadeh Majd * gnu/packages/lxqt.scm (lxqt-archiver): New Variable. --- gnu/packages/lxqt.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index a8699b3d09..fe6e71971d 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -1245,6 +1245,38 @@ easily publishing them on internet image hosting s= ervices.") (license license:gpl2+))) =20 =20 +(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 "Simple & lightweight desktop-agnostic Qt file archiver= . +This is only a front-end (a graphical interface) to archiving programs l= ike tar and zip.") + (license license:gpl2+))) + ;; The LXQt Desktop Environment =20 (define-public lxqt --=20 2.19.0