aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/shadow.scm
diff options
context:
space:
mode:
authorIan Eure <ian@retrospec.tv>2024-05-30 15:39:50 -0700
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-05-31 23:01:42 -0400
commitca3cc238e7b073e700a0b66209b27bf7a7e2cdaf (patch)
tree05320d79e23d60e6282f20f1fd1a478fdc12f5e6 /gnu/system/shadow.scm
parent3b3ead627a7bd698dd876f770fe1159ebeeba0e7 (diff)
downloadguix-ca3cc238e7b073e700a0b66209b27bf7a7e2cdaf.tar.gz
guix-ca3cc238e7b073e700a0b66209b27bf7a7e2cdaf.zip
gnu: librewolf: Generate source tarball.
This patch removes an intermediate step in the build chain. The upstream source tarball is created with an automated build process, where Firefox sources are fetched, patched, and repacked. Rather than download the output of that process, as the package has been, it’s now replicated within the build process, similar to how IceCat works. * gnu/packages/librewolf.scm (firefox-source-origin): New procedure. (librewolf-source-origin): Likewise. (computed-origin-method): New variable. (librewolf-source): Likewise. (librewolf) [source]: Use it. Change-Id: I0f1c2a10252cbbff9b3b3140f6ea3a594df0c97b Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/system/shadow.scm')
0 files changed, 0 insertions, 0 deletions
(mount-file-system): Adjust caller. * gnu/build/linux-boot.scm (boot-system): Interpret ROOT here. * gnu/services/base.scm (file-system->fstab-entry): Remove use of 'file-system-title'. * doc/guix.texi (File Systems): Remove documentation of the 'title' field. Rewrite documentation of 'device' and document 'file-system-label'. 2018-05-19file-systems: Do not export <file-system>.Ludovic Courtès * gnu/system/file-systems.scm (<file-system>): Do not export. * gnu/system.scm (operating-system-root-file-system): Use an accessor instead of 'match'. 2018-04-29file-systems: Expound '%pseudo-file-system-types'.Ludovic Courtès Reported by Tobias Geerinckx-Rice <me@tobias.gr>. * gnu/system/file-systems.scm (%pseudo-file-system-types): Add "debugfs", "efivarfs", "hugetlbfs", "overlay", and "securityfs". 2018-04-27guix system: Report wrong file system 'device' fields.Ludovic Courtès Previously, if you wrote (device "my-label") without (title 'label), you'd get: guix system: error: stat: No such file or directory: "my-label" Now you get a proper error and a hint. Reported by Pierre-Antoine Rouby. * guix/scripts/system.scm (check-file-system-availability)[literal]: New variable. Loop over LITERAL. * gnu/system/file-systems.scm (%pseudo-file-system-types): New variable. * guix/ui.scm (display-hint): Make public.