mirror of
https://github.com/SqrtMinusOne/channel-q.git
synced 2025-12-11 04:03:03 +03:00
feat: add ncurses as dependency to dt-colorscripts
This commit is contained in:
parent
be1dd40601
commit
562349b5a2
1 changed files with 4 additions and 1 deletions
|
|
@ -2,7 +2,8 @@
|
||||||
#:use-module (guix licenses)
|
#:use-module (guix licenses)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix git-download))
|
#:use-module (guix git-download)
|
||||||
|
#:use-module (gnu packages ncurses))
|
||||||
|
|
||||||
(define-public dt-colorscripts
|
(define-public dt-colorscripts
|
||||||
(package
|
(package
|
||||||
|
|
@ -37,6 +38,8 @@
|
||||||
(install-file "colorscript" bin)
|
(install-file "colorscript" bin)
|
||||||
(install-file "colorscript.1" man)
|
(install-file "colorscript.1" man)
|
||||||
(copy-recursively "colorscripts" (string-append opt "/colorscripts"))))))))
|
(copy-recursively "colorscripts" (string-append opt "/colorscripts"))))))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ncurses" ,ncurses)))
|
||||||
(synopsis "A collection of terminal color scripts DT has accumulated over the years")
|
(synopsis "A collection of terminal color scripts DT has accumulated over the years")
|
||||||
(home-page "https://gitlab.com/dwt1/shell-color-scripts")
|
(home-page "https://gitlab.com/dwt1/shell-color-scripts")
|
||||||
(license isc)
|
(license isc)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue