mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-10-14 17:34:35 +00:00
28 lines
959 B
Scheme
28 lines
959 B
Scheme
;;; SPDX-FileCopyrightText: 2025 Hilton Chain <hako@ultrarare.space>
|
|
;;;
|
|
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
(define-module (rosenthal packages ci)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix git-download)
|
|
#:use-module (gnu packages ci))
|
|
|
|
(define-public cuirass/dolly
|
|
(let ((commit "1de99f730b34853930fa5bc5127db4203bb12211")
|
|
(revision "2"))
|
|
(package
|
|
(inherit cuirass)
|
|
(name "cuirass-dolly")
|
|
(version (git-version "1.3.1" revision commit))
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://git.guix.gnu.org/cuirass.git")
|
|
(commit commit)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"10anvrd532m01lsdq6hnjn6b15bf19k4drb3igyfnp038r6dfp2z")))))))
|