start on a GUIX module #1315

pull/1708/head
nick black 3 years ago
parent 96d743536f
commit 8cf235e6b7
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -0,0 +1,24 @@
(define-module (gnu packages notcurses)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module (guix licenses)
#:use-module (gnu packages gawk))
(define-public notcurses
(package
(name "notcurses")
(version "2.3.1")
(source (origin
(method git-fetch)
(uri (git-reference "https://github.com/dankamongmen/notcurses" version
".tar.gz"))
(sha256
(base32
"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
(build-system cmake)
(arguments '(#:configure-flags '("-DUSE_POC=off")))
(synopsis "Blingful library for TUIs and character semigraphics")
(description "Blingful library for TUIs and character semigraphics")
(home-page "https://notcurses.com")
(license asl2.0)))
Loading…
Cancel
Save