From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54359) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIkHU-0002s8-0o for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIkHS-00034M-PM for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48570) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIkHS-000342-FQ for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jIkHS-0004ZQ-D8 for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:02 -0400 Subject: [bug#40288] [PATCH 1/1] gnu: Add lxqt-organizer. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:55940) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIEWu-0003HL-LJ for guix-patches@gnu.org; Sat, 28 Mar 2020 12:41:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIEWt-00087S-BO for guix-patches@gnu.org; Sat, 28 Mar 2020 12:41:52 -0400 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:36665) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jIEWt-00086w-04 for guix-patches@gnu.org; Sat, 28 Mar 2020 12:41:51 -0400 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.west.internal (Postfix) with ESMTP id 427CC934 for ; Sat, 28 Mar 2020 12:41:48 -0400 (EDT) Mime-Version: 1.0 Message-Id: Date: Sat, 28 Mar 2020 21:11:06 +0430 From: "Hamzeh Nasajpour" Content-Type: text/plain 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: 40288@debbugs.gnu.org * gnu/packages/lxqt.scm (lxqt-organizer): New variable. --- gnu/packages/lxqt.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index a440491633..7ef6ca51ce 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -1269,6 +1269,40 @@ QTermWidget.") easily publishing them on internet image hosting services.") (license license:gpl2+))) +(define-public lxqt-organizer + (package + (name "lxqt-organizer") + (version "v0.003") + (source + (origin + (method git-fetch) + (uri (git-reference + (url (string-append "https://github.com/lxqt/organizer.git")) + (commit "5aa556aa0f0409e00fac5b63d9118ff228d2e840") + (recursive? #t))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1czs9gca7aqsfcnxhi7nzq97pxbmhfgbfh00j7nl8cig0yxb6apv")))) + (build-system cmake-build-system) + (inputs + `(("kwindowsystem" ,kwindowsystem) + ("liblxqt" ,liblxqt) + ("libqtxdg" ,libqtxdg) + ("qtbase" ,qtbase) + ("qtsvg" ,qtsvg) + ;;("qtlinguist" ,qttools) + ("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 "LXQt Organizer is a lightweight organizer for personal information management.") + (description + "This package provides a Qt-based application for managing meetings, events and other personal information.") + (license license:lgpl2.1+))) (define-public lxqt-archiver (package -- 2.25.1