aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/musl.scm
diff options
context:
space:
mode:
authorSughosha <sughosha@disroot.org>2023-08-12 23:05:55 +0200
committer宋文武 <iyzsong@member.fsf.org>2023-08-13 12:43:00 +0800
commitd1e4191cea4a1eb9607d7a23d75f95dc5a5686f9 (patch)
tree79cba1292b5ebf56586ef17c0419e5e4972bb16f /gnu/packages/musl.scm
parent0ee45f48e7336cb7b14c4a086ef31d7043f29839 (diff)
downloadguix-d1e4191cea4a1eb9607d7a23d75f95dc5a5686f9.tar.gz
guix-d1e4191cea4a1eb9607d7a23d75f95dc5a5686f9.zip
gnu: Add falkon.
* gnu/packages/kde-internet.scm (falkon): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
Diffstat (limited to 'gnu/packages/musl.scm')
0 files changed, 0 insertions, 0 deletions
t/gnu/build/vm.scm?id=abf0880a67a362122d7c2379594cf3c27c45ffbd'>vm: Add missing module....* gnu/build/vm.scm (define-module): Use module (guix build syscalls). It fixes the following warnings during guix build : gnu/build/vm.scm:233:3: warning: possibly unbound variable `mount' gnu/build/vm.scm:238:3: warning: possibly unbound variable `umount' gnu/build/vm.scm:268:8: warning: possibly unbound variable `mount' gnu/build/vm.scm:276:8: warning: possibly unbound variable `umount' gnu/build/vm.scm:315:4: warning: possibly unbound variable `mount' gnu/build/vm.scm:323:4: warning: possibly unbound variable `umount' This was not possible until the previous commit because we had to be sure that Guile core implementation of 'mount' and 'umount' was used in initrd context. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Mathieu Othacehe 2016-11-28vm: Avoid needless file copy in 'load-in-linux-vm'....Reported by Chris Webber. * gnu/build/vm.scm (load-in-linux-vm)[image-file]: Remove. Directly refer to OUTPUT instead. Ludovic Courtès