mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: cuirass: Update to 0.0.1-72.543e26a.
* gnu/packages/ci.scm (guile-mastodon-dev): New variable. (guile-mastodon-dev): Update to 0.0.1-72.543e26a. [inputs]: Use guile-mastodon-dev instead of guile-mastodon.
This commit is contained in:
parent
011ec41c25
commit
dbc10e7474
1 changed files with 22 additions and 4 deletions
|
@ -47,9 +47,27 @@ (define-module (gnu packages ci)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (guix build-system gnu))
|
#:use-module (guix build-system gnu))
|
||||||
|
|
||||||
|
(define-public guile-mastodon-dev
|
||||||
|
(let ((commit "88115d85221876b1baea4accb7c76995da32f479")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(inherit guile-mastodon)
|
||||||
|
(name "guile-mastodon")
|
||||||
|
(version (git-version "0.0.1" revision commit))
|
||||||
|
(home-page "https://framagit.org/mothacehe/guile-mastodon.git")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url home-page)
|
||||||
|
(commit commit)))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"04dgxliz9bmhn0f7h1n0dj0r5h0fzhg80nxl1rpbxh4zs1yw9qvj"))
|
||||||
|
(file-name (string-append name "-" version "-checkout")))))))
|
||||||
|
|
||||||
(define-public cuirass
|
(define-public cuirass
|
||||||
(let ((commit "3e6561740958ea06bf50f8086a4066b555beacc5")
|
(let ((commit "543e26addc6e2304611e2feb8dd3a5a0646507b6")
|
||||||
(revision "71"))
|
(revision "72"))
|
||||||
(package
|
(package
|
||||||
(name "cuirass")
|
(name "cuirass")
|
||||||
(version (git-version "0.0.1" revision commit))
|
(version (git-version "0.0.1" revision commit))
|
||||||
|
@ -61,7 +79,7 @@ (define-public cuirass
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mrfjcfw9v7gpk4sp65jxfvikmdkxgkhwdjn29vjph04z82jh36z"))))
|
"01cxg0nwafzfg0phbv1b4cv24w7yaalkkdib3qfwf6jqagbfg85y"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:modules ((guix build utils)
|
'(#:modules ((guix build utils)
|
||||||
|
@ -127,7 +145,7 @@ (define-public cuirass
|
||||||
("guile-squee" ,guile-squee)
|
("guile-squee" ,guile-squee)
|
||||||
("guile-git" ,guile-git)
|
("guile-git" ,guile-git)
|
||||||
("guile-zlib" ,guile-zlib)
|
("guile-zlib" ,guile-zlib)
|
||||||
("guile-mastodon" ,guile-mastodon)
|
("guile-mastodon" ,guile-mastodon-dev)
|
||||||
("mailutils" ,mailutils)
|
("mailutils" ,mailutils)
|
||||||
;; FIXME: this is propagated by "guile-git", but it needs to be among
|
;; FIXME: this is propagated by "guile-git", but it needs to be among
|
||||||
;; the inputs to add it to GUILE_LOAD_PATH.
|
;; the inputs to add it to GUILE_LOAD_PATH.
|
||||||
|
|
Loading…
Reference in a new issue