# GNU Guix --- Functional package management for GNU # Copyright © 2018, 2022 Ludovic Courtès # # 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 . # # Test 'guix describe'. # guix describe --version tmpfile="t-guix-describe-$$" trap "rm -f $tmpfile" EXIT rm -f "$tmpfile" if [ -d "$abs_top_srcdir/.git" ] then # Since we're in a Git checkout, we can at least check that these things # work. guix describe | grep -i "checkout" if git --version > /dev/null 2>&1 then result="`guix describe | grep commit: | cut -d : -f 2-`" commit="`git log | head -1 | cut -c 7-`" test "x$result" = "x$commit" fi guix describe -f channels case "`guix describe -f channels | grep url`" in *"(url \"$abs_top_srcdir/\")") true;; *) false;; esac else exit 77 fi 0b95de9b3bad19da20cb034ca2bc245c2b48cf00'>commitdiff
AgeCommit message (Expand)Author
2024-09-04gnu: screen: Update to 5.0.0...* gnu/packages/patches/screen-hurd-path-max.patch: Update for screen 5.0.0. * gnu/packages/screen.scm (screen): Update to 5.0.0. [arguments]<#:configure-flags: Add "-D_GNU_SOURCE=1" to CFLAGS. [inputs]: Add linux-pam. Change-Id: Iebc5eff0128ff7f4d27a22cca1bd4a025aca3244 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Andy Tai
2024-08-31gnu: screen: Add libxcrypt dependency....* gnu/packages/screen.scm (screen)[inputs]: Add libxcrypt. Change-Id: Ia8b7fce24603a038a52d57ef7177f588b66e006e Janneke Nieuwenhuizen
2024-08-31gnu: byobu: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/screen.scm (byobu)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Maxime Devos