From 7f85664d0736be2694f7be75997279cfa4eb0525 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 2 Jun 2020 03:49:14 +0200 Subject: gnu: sakura: Don't use NAME in source URI. * gnu/packages/terminals.scm (sakura)[source]: Hard-code NAME. --- gnu/packages/terminals.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index 335b8d3ae1..8447708376 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -676,8 +676,8 @@ eye-candy, customizable, and reasonably lightweight.") (version "3.7.0") (source (origin (method url-fetch) - (uri (string-append "https://launchpad.net/" name "/trunk/" - version "/+download/" name "-" version + (uri (string-append "https://launchpad.net/sakura/trunk/" + version "/+download/sakura-" version ".tar.gz")) (sha256 (base32 -- cgit v1.2.3
aboutsummaryrefslogtreecommitdiff
path: root/build-aux/update-NEWS.scm
AgeCommit message (Expand)Author
2021-05-10maint: update-NEWS: Sort packages prior writing to the data file....* build-aux/update-NEWS.scm (main): Sort packages. Maxim Cournoyer
2021-04-23build-aux: Relax the regexp used to match NEWS sections....A number of packages doesn't really make sense in the name of the section to be substituted. This change allows using simply '*** new packages' instead of '*** 1999 new packages', for example, and have the update-NEWS.scm script update it. * build-aux/update-NEWS.scm (write-packages-added) <regexp>: Do not care about leading white space in the name of the section. Maxim Cournoyer