aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/scsh.scm
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-11-07 20:16:19 -0800
committerGravatar Tom Willemse2022-11-07 20:16:19 -0800
commit5f46121fc753d59fc45d7ff9a37d36d28c33933d (patch)
tree20874447986ac0b94fda2781382380fe020446e9 /oni/packages/scsh.scm
parentb2e72743dea486311677a3a2c641795b36b445f0 (diff)
downloadnew-dotfiles-5f46121fc753d59fc45d7ff9a37d36d28c33933d.tar.gz
new-dotfiles-5f46121fc753d59fc45d7ff9a37d36d28c33933d.zip
Add MPD configuration
This also includes an attempt at installing a custom SCSH that defines some search paths. But unfortunately it didn't work, so the SCSH ends up being the usual one and the ‘mpd-random-albums’ package doesn't actually work. The main MPD configuration does work, though. This also includes the instruction to install tmsu which I want to try out again.
Diffstat (limited to 'oni/packages/scsh.scm')
-rw-r--r--oni/packages/scsh.scm17
1 files changed, 17 insertions, 0 deletions
diff --git a/oni/packages/scsh.scm b/oni/packages/scsh.scm
new file mode 100644
index 0000000..6f76555
--- /dev/null
+++ b/oni/packages/scsh.scm
@@ -0,0 +1,17 @@
+(define-module (oni packages scsh)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (gnu packages autotools)
+ #:use-module ((gnu packages shells) #:prefix shells:)
+ #:use-module (guix build-system gnu)
+ #:use-module (guix git-download)
+ #:use-module (guix packages))
+
+(define-public scsh
+ (package
+ (inherit shells:scsh)
+ ;; (native-search-paths
+ ;; (list (search-path-specification
+ ;; (variable "SCSH_LIB_DIRS")
+ ;; (separator #f)
+ ;; (files '("share/scsh-0.7")))))
+ ))