mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: Add hare-mcron.
* gnu/packages/hare-apps.scm (hare-mcron): New variable. Change-Id: I324f5711cf359ac996111f6adcb71db5ff68dda5
This commit is contained in:
parent
5192dc2ff3
commit
5ecec89784
1 changed files with 24 additions and 0 deletions
|
|
@ -83,6 +83,30 @@ more available transition, the state goes back to the initial position.")
|
|||
Hare.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public hare-mcron
|
||||
(package
|
||||
(name "hare-mcron")
|
||||
(version "1.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.sr.ht/~stacyharper/mcron")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "18h85fpxa2hs3fr132j85qh8b73dsawcn845ifk8ffgvh2kmw9zl"))))
|
||||
(build-system hare-build-system)
|
||||
(native-inputs (list scdoc))
|
||||
(inputs (list hare-ev))
|
||||
(supported-systems %hare-supported-systems)
|
||||
(home-page "https://mcron.builtwithhare.org/")
|
||||
(synopsis "Sleeping cron job scheduler")
|
||||
(description "Mcron is a cron implementation that is designed to be used
|
||||
on suspendable machines, like mobile phones. It will wake the device from
|
||||
suspension to trigger the tasks.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public sxmobar
|
||||
(package
|
||||
(name "sxmobar")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue