all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Blake Shaw via Guix-patches via <guix-patches@gnu.org>
To: 52335@debbugs.gnu.org
Cc: Blake Shaw <blake@nonconstructivism.com>
Subject: [bug#52335] [PATCH 2/2] gnu: add package notcurses.scm
Date: Tue,  7 Dec 2021 02:00:02 +0700	[thread overview]
Message-ID: <1aa737a8cdcbe9c0e95052fd3187b059355f86f9.1638817174.git.blake@nonconstructivism.com> (raw)
In-Reply-To: <5ccbd4e534f4f6fcfb3f8c8814ad59e51377cb7a.1638817174.git.blake@nonconstructivism.com>

Signed-off-by: Blake Shaw <blake@nonconstructivism.com>
---
 gnu/packages/notcurses.scm | 73 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 73 insertions(+)
 create mode 100644 gnu/packages/notcurses.scm

diff --git a/gnu/packages/notcurses.scm b/gnu/packages/notcurses.scm
new file mode 100644
index 0000000000..00e2fd92db
--- /dev/null
+++ b/gnu/packages/notcurses.scm
@@ -0,0 +1,73 @@
+;;; Copyright © 2021 Blake Shaw <blake@nonconstructivism.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages notcurses)
+  #:use-module (guix utils)
+  #:use-module (gnu packages)
+  #:use-module (guix packages)
+  #:use-module (guix build utils)
+  #:use-module (guix git-download)
+  #:use-module (guix build-system cmake)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (gnu packages gcc)
+  #:use-module (gnu packages video)
+  #:use-module (gnu packages ncurses)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages compression)
+  #:use-module (gnu packages libunistring)
+  #:use-module (ice-9 match))
+
+(define-public notcurses
+  (package
+   (name "notcurses")
+   (version "3.0.0")
+   (source
+    (origin
+     (method git-fetch)
+     (uri (git-reference
+           (url "https://github.com/dankamongmen/notcurses")
+           (commit (string-append "v" version))))
+     (file-name (git-file-name name version))
+         (sha256
+          (base32 "1y9s77m1pp6syfml559d8dvif61y6zjldrdx1zri18q9sr0zqm9m"))))
+      (build-system cmake-build-system)
+      (arguments
+       `(#:tests? #f
+                  #:make-flags
+                  (list ,(string-append "CC=" (cc-for-target))
+                   (string-append "prefix="))
+                  #:configure-flags
+                  (map (lambda (s)
+                         (string-append "-D" s))
+                       '("USE_CPP=off"     "USE_COVERAGE=off" ;;here we set the default cmake
+                         "USE_DOXYGEN=off" "USE_DOCTEST=off"  ;;configuration. FSG=FSF approved only
+                         "USE_GPM=off"     "USE_MULTIMEDIA=ffmpeg" ;;other choices based on 
+                         "USE_PANDOC=off"  "FSG_BUILD=ON"))))      ;;reducing package footprint
+      (native-inputs
+       `(("gcc-toolchain" ,gcc)
+         ("ncurses" ,ncurses)
+         ("pkg-config" ,pkg-config)))
+      (inputs
+       `(("ffmpeg" ,ffmpeg)
+         ("libdeflate" ,libdeflate)
+         ("libunistring" ,libunistring)
+         ("zlib" ,zlib)))
+      (synopsis "Library facilitating complex textual user interfaces on modern terminals")
+      (description "Notcurses is a library for building complex 
+textual user interfaces on modern terminals. It does not use ncurses, while it does make use of libtinfo from that package.")
+      (home-page "https://notcurses.com/html/")
+      (license license:asl2.0)))
-- 
2.33.1





  reply	other threads:[~2021-12-06 19:01 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-06 19:00 [bug#52336] [PATCH 1/2] gnu: register notcurses.scm in local.mk Blake Shaw via Guix-patches via
2021-12-06 19:00 ` Blake Shaw via Guix-patches via [this message]
2021-12-22  3:57   ` [bug#52335] [PATCH 2/2] gnu: add package notcurses.scm Leo Famulari
2021-12-06 19:24 ` [bug#52336] [PATCH 1/2] gnu: register notcurses.scm in local.mk Leo Famulari
2021-12-21 20:37 ` Blake Shaw via Guix-patches via
2021-12-21 20:51   ` Leo Famulari
2021-12-21 23:23     ` Leo Famulari
     [not found] <87k0fnwu47.fsf@nonconstructivism.com>
2021-12-29 17:48 ` [bug#52335] [PATCH 2/2] gnu: add package notcurses.scm Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1aa737a8cdcbe9c0e95052fd3187b059355f86f9.1638817174.git.blake@nonconstructivism.com \
    --to=guix-patches@gnu.org \
    --cc=52335@debbugs.gnu.org \
    --cc=blake@nonconstructivism.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.