feat: package void zzz in (radix packages admin)

pull/1/head
anemofilia 2023-09-24 00:48:25 -03:00
parent 65e95bfce7
commit 98844514c0
No known key found for this signature in database
GPG Key ID: 5A8F3D62C87A2B33
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
(define-module (radix packages admin)
#:use-module (guix packages)
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix build-system copy)
#:use-module ((guix licenses) #:prefix license:)
#:export (zzz))
(define-public zzz
(let ((commit "329b891426efc093ad8c65e96364427c2fb25b54")
(revision "0"))
(package
(name "zzz")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/void-linux/void-runit")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1lgf3maqw2j9hjzq0bkrvbl7vbh4zpppm9cdl9hvf54kbxcn2v9i"))))
(build-system copy-build-system)
(arguments
(list #:install-plan
#~'(("zzz" "bin/")
("zzz.8" "share/man/man8/"))))
(home-page "https://github.com/void-linux/void-runit")
(synopsis
"Simple script to suspend or hibernate your computer.")
(description
"Simple script to suspend or hibernate your computer. It
suports hooks before and after suspending.")
(license license:cc0))))