1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-07-13 20:44:06 +02:00

gnu: ddate: Move to (gnu packages calendar).

* gnu/packages/linux.scm (ddate): Move from here ...
* gnu/packages/calendar.scm (ddate): ... to here.

Change-Id: I6e42f8d4487e9a6615fdc895c8ca32254679a691
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Herman Rimm
2025-10-06 17:03:49 +02:00
committed by Sharlatan Hellseher
parent 5b31cb7360
commit 182d4b3d34
2 changed files with 22 additions and 22 deletions
+22
View File
@@ -194,6 +194,28 @@ algorithms library for calendar dates and durations. It also provides the
(home-page "https://howardhinnant.github.io/date/date.html")
(license license:expat)))
(define-public ddate
(package
(name "ddate")
(version "0.2.2")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/bo0ts/ddate")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1qchxnxvghbma6gp1g78wnjxsri0b72ha9axyk31cplssl7yn73f"))))
(build-system cmake-build-system)
(arguments '(#:tests? #f))
(home-page "https://github.com/bo0ts/ddate")
(synopsis "PERPETUAL DATE CONVERTER FROM GREGORIAN TO POEE CALENDAR")
(description
"ddate displays the Discordian date and holidays of a given date.
The Discordian calendar was made popular by the \"Illuminatus!\" trilogy
by Robert Shea and Robert Anton Wilson.")
(license license:public-domain)))
(define-public libical
(package
(name "libical")
-22
View File
@@ -3395,28 +3395,6 @@ such as @command{grep}, @command{cp}, @command{vi}, etc. and can be used as an
alternative to the corresponding implementations from the GNU project.")
(license license:bsd-2)))
(define-public ddate
(package
(name "ddate")
(version "0.2.2")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/bo0ts/ddate")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1qchxnxvghbma6gp1g78wnjxsri0b72ha9axyk31cplssl7yn73f"))))
(build-system cmake-build-system)
(arguments '(#:tests? #f))
(home-page "https://github.com/bo0ts/ddate")
(synopsis "PERPETUAL DATE CONVERTER FROM GREGORIAN TO POEE CALENDAR")
(description
"ddate displays the Discordian date and holidays of a given date.
The Discordian calendar was made popular by the \"Illuminatus!\" trilogy
by Robert Shea and Robert Anton Wilson.")
(license license:public-domain)))
(define-public dislocker
(package
(name "dislocker")