This commit is contained in:
Ryan Schanzenbacher 2024-01-25 15:19:37 -05:00
parent 7957aa8ded
commit 35907a84c1
Signed by: ryan77627
GPG key ID: 81B0E222A3E2308E
2 changed files with 27 additions and 1 deletions

View file

@ -20,6 +20,7 @@
(ryan-services spotify) (ryan-services spotify)
(ryan-config utils) (ryan-config utils)
(ryan-packages freedesktop) (ryan-packages freedesktop)
(ryan-packages calcurse)
(ryan-packages mozilla)) (ryan-packages mozilla))
(define my-neovim (define my-neovim
@ -107,11 +108,12 @@
"tcpdump" "tcpdump"
"pamixer" "pamixer"
"git" "git"
"git:send-email"
"password-store" "password-store"
"node" "node"
"kanshi" "kanshi"
"git-lfs")) "git-lfs"))
(list my-neovim wl-mirror firefox-wayland-new))) (list my-neovim wl-mirror firefox-wayland-new calcurse-fixed)))
;; Below is the list of Home services. To search for available ;; Below is the list of Home services. To search for available
;; services, run 'guix home search KEYWORD' in a terminal. ;; services, run 'guix home search KEYWORD' in a terminal.

View file

@ -0,0 +1,24 @@
(define-module (ryan-packages calcurse)
#:use-module (guix download)
#:use-module (guix packages)
#:use-module (guix gexp)
#:use-module (gnu packages)
#:use-module (gnu packages calcurse)
#:use-module (gnu packages python-web)
#:use-module (guix git-download)
#:use-module (guix utils))
(define-public calcurse-fixed
(package
(inherit calcurse)
(version "4.8.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://calcurse.org/files/calcurse-"
version ".tar.gz"))
(sha256
(base32 "02l3spj2ai97b87winz3kvsxvf66g74lm46b7kcbhsgx2iqb6syq"))))
(propagated-inputs (list python-httplib2))))
calcurse-fixed