gnu: mumi: Update to 0.0.6.
* gnu/packages/mail.scm (mumi): Update to 0.0.6. Change-Id: Ie98c2f72d916318aa1f43384a3286ae80ae3655a
This commit is contained in:
parent
2823253484
commit
3821ee62cc
1 changed files with 71 additions and 73 deletions
|
@ -32,7 +32,7 @@
|
||||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;; Copyright © 2020 Justus Winter <justus@sequoia-pgp.org>
|
;;; Copyright © 2020 Justus Winter <justus@sequoia-pgp.org>
|
||||||
;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
|
;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
|
||||||
;;; Copyright © 2020, 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2020, 2021, 2022, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2020, 2021 Alexey Abramov <levenson@mmer.org>
|
;;; Copyright © 2020, 2021 Alexey Abramov <levenson@mmer.org>
|
||||||
;;; Copyright © 2020 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
|
;;; Copyright © 2020 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
|
||||||
|
@ -4102,80 +4102,78 @@ It is a replacement for the @command{urlview} program.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public mumi
|
(define-public mumi
|
||||||
(let ((commit "2453a5a6686c035854e4d523b8faa8c47405bd76")
|
(package
|
||||||
(revision "3"))
|
(name "mumi")
|
||||||
(package
|
(version "0.0.6")
|
||||||
(name "mumi")
|
(source (origin
|
||||||
(version (git-version "0.0.5" revision commit))
|
(method git-fetch)
|
||||||
(source (origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://git.savannah.gnu.org/git/guix/mumi.git/")
|
||||||
(uri (git-reference
|
(commit version)))
|
||||||
(url "https://git.savannah.gnu.org/git/guix/mumi.git/")
|
(file-name (git-file-name name version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32
|
||||||
(sha256
|
"0zhiwl37ybw3pn1j1mz6cnwbznfmhqzc87kq8lvzbk642nx43sn4"))))
|
||||||
(base32
|
(build-system gnu-build-system)
|
||||||
"0dq87qn77c6qganhck048qxq5ghj3fh2v604f87hwv530lxifabr"))))
|
(arguments
|
||||||
(build-system gnu-build-system)
|
(list
|
||||||
(arguments
|
#:modules '((guix build gnu-build-system)
|
||||||
(list
|
((guix build guile-build-system)
|
||||||
#:modules '((guix build gnu-build-system)
|
#:select (target-guile-effective-version))
|
||||||
((guix build guile-build-system)
|
(guix build utils))
|
||||||
#:select (target-guile-effective-version))
|
#:imported-modules `((guix build guile-build-system)
|
||||||
(guix build utils))
|
,@%gnu-build-system-modules)
|
||||||
#:imported-modules `((guix build guile-build-system)
|
|
||||||
,@%gnu-build-system-modules)
|
|
||||||
|
|
||||||
#:configure-flags '(list "--localstatedir=/var")
|
#:configure-flags '(list "--localstatedir=/var")
|
||||||
|
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'install-picocss
|
(add-after 'unpack 'install-picocss
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((pico (dirname (search-input-file inputs "/scss/pico.scss"))))
|
(let ((pico (dirname (search-input-file inputs "/scss/pico.scss"))))
|
||||||
(mkdir-p "assets/pico/scss")
|
(mkdir-p "assets/pico/scss")
|
||||||
(copy-recursively pico "assets/pico/scss"))))
|
(copy-recursively pico "assets/pico/scss"))))
|
||||||
(add-after 'install 'wrap-executable
|
(add-after 'install 'wrap-executable
|
||||||
(lambda _
|
(lambda _
|
||||||
(let* ((bin (string-append #$output "/bin"))
|
(let* ((bin (string-append #$output "/bin"))
|
||||||
(version (target-guile-effective-version))
|
(version (target-guile-effective-version))
|
||||||
(scm (string-append #$output "/share/guile/site/" version))
|
(scm (string-append #$output "/share/guile/site/" version))
|
||||||
(go (string-append #$output "/lib/guile/" version
|
(go (string-append #$output "/lib/guile/" version
|
||||||
"/site-ccache")))
|
"/site-ccache")))
|
||||||
(wrap-program (string-append bin "/mumi")
|
(wrap-program (string-append bin "/mumi")
|
||||||
`("GUILE_LOAD_PATH" ":" prefix
|
`("GUILE_LOAD_PATH" ":" prefix
|
||||||
(,scm ,(getenv "GUILE_LOAD_PATH")))
|
(,scm ,(getenv "GUILE_LOAD_PATH")))
|
||||||
`("GUILE_LOAD_COMPILED_PATH" ":" prefix
|
`("GUILE_LOAD_COMPILED_PATH" ":" prefix
|
||||||
(,go ,(getenv "GUILE_LOAD_COMPILED_PATH"))))))))))
|
(,go ,(getenv "GUILE_LOAD_COMPILED_PATH"))))))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list bash-minimal
|
(list bash-minimal
|
||||||
guile-email
|
guile-email
|
||||||
guile-fibers
|
guile-fibers
|
||||||
guile-gcrypt
|
guile-gcrypt
|
||||||
guile-gnutls
|
guile-gnutls
|
||||||
guile-json-4
|
guile-json-4
|
||||||
guile-kolam
|
guile-kolam
|
||||||
guile-redis
|
guile-redis
|
||||||
guile-syntax-highlight
|
guile-syntax-highlight
|
||||||
guile-webutils
|
guile-webutils
|
||||||
guile-xapian
|
guile-xapian
|
||||||
guile-3.0
|
guile-3.0
|
||||||
mailutils))
|
mailutils))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake pkg-config sassc
|
(list autoconf automake pkg-config sassc
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/picocss/pico.git")
|
(url "https://github.com/picocss/pico.git")
|
||||||
(commit "3052db4bd3439e236479dc0f98069f7d3b559486")))
|
(commit "3052db4bd3439e236479dc0f98069f7d3b559486")))
|
||||||
(file-name (git-file-name "pico" "1.5.6"))
|
(file-name (git-file-name "pico" "1.5.6"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1gs1li48hqizx7lc4n2fdxn9i2v4vafkqpza7svvfpcamfz29jpi")))))
|
"1gs1li48hqizx7lc4n2fdxn9i2v4vafkqpza7svvfpcamfz29jpi")))))
|
||||||
(home-page "https://git.savannah.gnu.org/cgit/guix/mumi.git/")
|
(home-page "https://git.savannah.gnu.org/cgit/guix/mumi.git/")
|
||||||
(synopsis "Debbugs web interface")
|
(synopsis "Debbugs web interface")
|
||||||
(description "Mumi is a Debbugs web interface.")
|
(description "Mumi is a Debbugs web interface.")
|
||||||
(license license:agpl3+))))
|
(license license:agpl3+)))
|
||||||
|
|
||||||
(define-public ytnef
|
(define-public ytnef
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue