From 562349b5a252e2e7921ef43b7cc525d20a8a3004 Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Fri, 21 May 2021 19:35:42 +0300 Subject: [PATCH] feat: add ncurses as dependency to dt-colorscripts --- dt-colorscripts.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dt-colorscripts.scm b/dt-colorscripts.scm index 0453931..9c3a73e 100644 --- a/dt-colorscripts.scm +++ b/dt-colorscripts.scm @@ -2,7 +2,8 @@ #:use-module (guix licenses) #:use-module (guix packages) #: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 (package @@ -37,6 +38,8 @@ (install-file "colorscript" bin) (install-file "colorscript.1" man) (copy-recursively "colorscripts" (string-append opt "/colorscripts")))))))) + (propagated-inputs + `(("ncurses" ,ncurses))) (synopsis "A collection of terminal color scripts DT has accumulated over the years") (home-page "https://gitlab.com/dwt1/shell-color-scripts") (license isc)