diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-12 08:49:56 +0000 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-13 21:58:33 +0000 |
commit | 3148cd71441924b0806fa0742db7d3f9680c8ffa (patch) | |
tree | 3b2fb276a1d00a3e137ae4b0348a17b12b77374f /gnu | |
parent | 37c84d077421692fea9ad69e935adbc00bac3b4c (diff) | |
download | guix-3148cd71441924b0806fa0742db7d3f9680c8ffa.tar.gz guix-3148cd71441924b0806fa0742db7d3f9680c8ffa.zip |
gnu: console-setup: Update to 1.207.
* gnu/packages/xorg.scm (console-setup): Update to 1.207.
[arguments]: Don't explicitly return #t from phases.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 587e9ccff0..c54417c586 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6679,7 +6679,7 @@ output.") (define-public console-setup (package (name "console-setup") - (version "1.205") + (version "1.207") (source (origin (method git-fetch) @@ -6687,7 +6687,7 @@ output.") (url "https://salsa.debian.org/installer-team/console-setup.git") (commit version))) (sha256 - (base32 "0sf560s14firyvzpgww79ydzc6p3jvjkbvsi8zsr5m3hr833w0ba")) + (base32 "0fj93apsknx3lzbi2025pzr19q1gwnim8g4007aqqkhidc1msgx5")) (file-name (git-file-name name version)))) (build-system gnu-build-system) (arguments @@ -6706,8 +6706,7 @@ output.") (substitute* '("Keyboard/ckbcomp") (("\"cat ") (string-append "\"" (which "cat") - " "))) - #t)) + " "))))) (add-before 'build 'make-doubled-bdfs (lambda* (#:key native-inputs inputs #:allow-other-keys) (invoke "make" "-C" "Fonts" |