;;; Copyright © 2021 Blake Shaw ;;; Copyright © 2022 Marius Bakke ;;; ;;; 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 . (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 download) #:use-module (guix build-system cmake) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages check) #:use-module (gnu packages haskell-xyz) #: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)) (define-public notcurses (package (name "notcurses") (version "3.0.8") (source (origin (method url-fetch) ;; Note: the upstream git repository contains non-free media (see the ;; documentation for DFSG_BUILD; but the project provides a sanitized ;; tarball for distributions. If switching to a git source, we need ;; to find a way to elide the non-free demos with a source 'snippet'. (uri (string-append "https://github.com/dankamongmen/notcurses/releases" "/download/v" version "/notcurses_" version "+dfsg.1.orig.tar.xz")) (file-name (string-append name "-" version ".tar.xz")) (sha256 (base32 "1nz32nqh7fn4i06hvl8ndkm0z4g08a6wzhilvv8ggx2hc5axsz89")))) (build-system cmake-build-system) (arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target))) ;; These flags are documented in 'INSTALL.md' in the source distribution. #:configure-flags '( ;; Do not build "coverage" "-DUSE_COVERAGE=off" ;; Do not build HTML documentation "-DUSE_DOXYGEN=off" ;; Don't include mouse support "-DUSE_GPM=off" ;; Use FFmpeg for multimedia support "-DUSE_MULTIMEDIA=ffmpeg" ;; Follow the Debian Free Software Guidelines, omitting nonfree content. "-DDFSG_BUILD=ON"))) (native-inputs (list pkg-config pandoc doctest)) (inputs (list ffmpeg libdeflate libunistring ncurses zlib)) (synopsis "Textual user interfaces") (description "Notcurses is a library for building complex textual user interfaces on modern terminals.") (home-page "https://notcurses.com") (license license:asl2.0))) uix/commit/tests/cpan.scm?id=ca719424455465fca4b872c371daf2a46de88b33'>Switch to Guile-Gcrypt....Ludovic Courtès 2018-08-24import: cpan: Adjust test to new URL....Ludovic Courtès 2017-10-30Revert "import: cpan: Use HTTPS for home pages."...Tobias Geerinckx-Rice 2017-10-29import: cpan: Use HTTPS for home pages....Tobias Geerinckx-Rice 2017-10-28import: cpan: Add trailing "/" on home-page....Eric Bavier 2017-10-28import: cpan: Propagate imported dependencies....Eric Bavier 2017-09-14import: cpan: Adjust expected license in tests....Ludovic Courtès 2017-06-07import: cpan: Update CPAN importer to use MetaCPAN v1 API....James Richardson 2017-02-13tests: Adjust for 'http-fetch' change in (guix import json)....Ludovic Courtès 2016-12-18tests: Mock up http-fetch....Ricardo Wurmus 2016-12-18tests: Adjust cpan tests....Ricardo Wurmus 2016-11-10tests: Adjust 'url-fetch' mocks to TLS changes....Ludovic Courtès 2016-08-31tests: cpan: Fix mock urls....Eric Bavier 2016-07-03import: cpan: Use our mirrors for 'https' URLs....Alex Sassmannshausen 2016-04-03build: Add a Guile custom test driver using SRFI-64....Mathieu Lirzin 2016-03-06tests: Disable grafting by default for most tests....Ludovic Courtès