~whereiseveryone/guixrus

b0d4a1c5883437c57e958b809390f3646423bae3 — jgart 1 year, 6 months ago 0627273 mbgui
add mbgui
1 files changed, 51 insertions(+), 0 deletions(-)

A guixrus/packages/mbgui.scm
A guixrus/packages/mbgui.scm => guixrus/packages/mbgui.scm +51 -0
@@ 0,0 1,51 @@
;;; GNU Guix --- Functional package management for GNU
;;;
;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; This file is not part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (guixrus packages mbgui)
  #:use-module (guix build-system python)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module (gnu packages))

(define-public mbgui
  (let ((commit "bb47b580104052a6c1cfaf46fde4570060d1a19c")
        (revision "0"))
    (package
      (name "mbgui")
      (version "0")
      (source
       (origin
         (method git-fetch)
         (uri
          (git-reference
           (url "https://github.com/bozokopic/mbgui")
           (commit commit)))
         (file-name (git-file-name name commit))
         (sha256
          (base32 "01b0b8spnr9b14p3xg469fpdh855g9kllgl206z2mjdy349fyc92"))))
      (build-system python-build-system)
      (arguments
        `(#:tests? #f)) ; no tests
      (home-page "https://github.com/bozokopic/mbgui")
      (synopsis "Maildir GUI based on mblaze")
      (description "@code{mbgui} is a maildir GUI based on mblaze.")
      (license license:gpl3+))))