From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52559) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h7wX9-0000Ej-8C for guix-patches@gnu.org; Sun, 24 Mar 2019 02:23:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h7wX8-0007WE-7B for guix-patches@gnu.org; Sun, 24 Mar 2019 02:23:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42435) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h7wX8-0007WA-2t for guix-patches@gnu.org; Sun, 24 Mar 2019 02:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h7wX7-0003aX-TW for guix-patches@gnu.org; Sun, 24 Mar 2019 02:23:01 -0400 Subject: [bug#34971] [PATCH] gnu: Add mako. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:52232) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h7wWJ-0008Bq-Ri for guix-patches@gnu.org; Sun, 24 Mar 2019 02:22:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h7wJS-0007QK-Pz for guix-patches@gnu.org; Sun, 24 Mar 2019 02:08:55 -0400 Received: from mx1.riseup.net ([198.252.153.129]:44930) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h7wJS-0007Pp-JI for guix-patches@gnu.org; Sun, 24 Mar 2019 02:08:54 -0400 Received: from capuchin.riseup.net (capuchin-pn.riseup.net [10.0.1.176]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 751FB1A1CD8 for ; Sat, 23 Mar 2019 23:08:53 -0700 (PDT) From: Meiyo Peng Date: Sun, 24 Mar 2019 14:08:45 +0800 Message-Id: <20190324060845.7921-1-meiyo@riseup.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 34971@debbugs.gnu.org * gnu/packages/wm.scm (mako): New variable. --- gnu/packages/wm.scm | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 0a05ff4ae4..cc7cd56d66 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -17,7 +17,7 @@ ;;; Copyright =C2=A9 2017 Oleg Pykhalov ;;; Copyright =C2=A9 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2018 Pierre-Antoine Rouby -;;; Copyright =C2=A9 2018 Meiyo Peng +;;; Copyright =C2=A9 2018, 2019 Meiyo Peng ;;; Copyright =C2=A9 2019 Rutger Helling ;;; ;;; This file is part of GNU Guix. @@ -1228,3 +1228,32 @@ modules for building a Wayland compositor.") (synopsis "Screen locking utility for Wayland compositors") (description "Swaylock is a screen locking utility for Wayland compo= sitors.") (license license:expat))) ; MIT license + +(define-public mako + (package + (name "mako") + (version "1.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emersion/mako") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "112b7s5bkvwlgsm2kng2vh8mn6wr3a6c7n1arl9adxlghdym449h"))= )) + (build-system meson-build-system) + (inputs + `(("cairo" ,cairo) + ("elogind" ,elogind) + ("pango" ,pango) + ("wayland" ,wayland))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("scdoc" ,scdoc) + ("wayland-protocols" ,wayland-protocols))) + (home-page "https://github.com/emersion/mako") + (synopsis "Lightweight Wayland notification daemon") + (description "@code{mako} is a lightweight notification daemon for +Wayland.") + (license license:expat))) --=20 2.21.0