aboutsummaryrefslogtreecommitdiff
path: root/nix/libutil
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2020-02-07 16:20:53 +0100
committerMarius Bakke <mbakke@fastmail.com>2020-02-10 23:05:25 +0100
commitd930b0261ca1479505109332db28b0e3df452848 (patch)
treeb9992ac5d26542f0e0f79b1974ba6788f6f1b382 /nix/libutil
parent22236ceb648e152651b392337441bba0ab957db6 (diff)
downloadguix-d930b0261ca1479505109332db28b0e3df452848.tar.gz
guix-d930b0261ca1479505109332db28b0e3df452848.zip
gnu: inkscape: Remove obsolete workaround.
* gnu/packages/inkscape.scm (inkscape)[arguments]: Remove phase "dont-use-system-includes".
Diffstat (limited to 'nix/libutil')
0 files changed, 0 insertions, 0 deletions
programs, if invoked by shepherd (where standard input is /dev/null), can still interact with the user if needed. * gnu/build/file-systems.scm (check-ext2-file-system) (check-bcachefs-file-system, check-btrfs-file-system): (check-fat-file-system, check-jfs-file-system): (check-f2fs-file-system, check-ntfs-file-system): (check-xfs-file-system): Use 'system*/tty' instead of 'system*'. Ludovic Courtès 2022-04-08mapped-devices: Ensure 'cryptsetup open' gets a tty....Fixes <https://issues.guix.gnu.org/54770>. Regression introduced in 400c9ed3d779308e56038305d40cd93acb496180. Previously, for an encrypted /home (say), "cryptsetup open" would be invoked by shepherd, with /dev/null as its standard input. It would thus run in non-interactive mode and, instead of asking for a passphrase, fail with: Nothing to read on input. This change ensures it runs in interactive mode. * gnu/build/file-systems.scm (system*/console, system*/tty): New procedures. * gnu/system/mapped-devices.scm (open-luks-device): Use 'system*/tty' instead of 'system*'. Ludovic Courtès 2021-11-23system: Add swap flags....* gnu/system/file-systems.scm (swap-space)[priority, discard?]: Add them. * guix/build/syscalls.scm (SWAP_FLAG_PREFER, SWAP_FLAG_PRIO_MASK, SWAP_FLAG_PRIO_SHIFT, SWAP_FLAG_DISCARD): Add them. * gnu/build/file-systems.scm (swap-space->flags-bit-mask): Add it. * gnu/services/base.scm (swap-service-type): Use it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Josselin Poiret