>From e7d4f3f47f364e74cc795855c21570a4da7aee71 Mon Sep 17 00:00:00 2001 From: nee Date: Sat, 10 Jun 2017 19:12:10 +0200 Subject: [PATCH] gnu: Add ddate. * gnu/packages/linux.scm (ddate): New variable. --- gnu/packages/linux.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2bbc3b6ef..ea725dfe8 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -25,6 +25,7 @@ ;;; Copyright © 2017 Mathieu Othacehe ;;; Copyright © 2017 Clément Lassieur ;;; Copyright © 2017 Rutger Helling +;;; Copyright © 2017 nee ;;; ;;; This file is part of GNU Guix. ;;; @@ -575,6 +576,27 @@ block devices, UUIDs, TTYs, and many other tools.") (license (list license:gpl3+ license:gpl2+ license:gpl2 license:lgpl2.0+ license:bsd-4 license:public-domain)))) +(define-public ddate + (package + (name "ddate") + (version "0.2.2") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/bo0ts/ddate/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1bbqqq8mswj4bp9083gxjaky5ysfznax4cynsqwmy125z053yg6m")))) + (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 procps (package (name "procps") -- 2.13.1