Tom Willemse
5f46121fc7
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.
17 lines
533 B
Scheme
17 lines
533 B
Scheme
(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")))))
|
|
))
|