From d0f25610d90753f336db11f09fd8e87d0d2c0121 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 4 Aug 2022 12:02:17 +0200 Subject: gnu: notcurses: Use tarball source instead of git. * gnu/packages/notcurses.scm (notcurses)[source]: Use URL-FETCH. --- gnu/packages/notcurses.scm | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'gnu/packages/notcurses.scm') diff --git a/gnu/packages/notcurses.scm b/gnu/packages/notcurses.scm index 28747a864e..5bb8a24edd 100644 --- a/gnu/packages/notcurses.scm +++ b/gnu/packages/notcurses.scm @@ -1,4 +1,5 @@ ;;; Copyright © 2021 Blake Shaw +;;; Copyright © 2022 Marius Bakke ;;; ;;; This file is part of GNU Guix. ;;; @@ -20,7 +21,7 @@ #:use-module (gnu packages) #:use-module (guix packages) #:use-module (guix build utils) - #:use-module (guix git-download) + #:use-module (guix download) #:use-module (guix build-system cmake) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages check) @@ -37,13 +38,17 @@ (version "3.0.8") (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 "05dxv0745kzna2zylvsb3rlwcrlpyc5xsdcflbrdc34ab29mc8z5")))) + (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 -- cgit v1.2.3