aboutsummaryrefslogtreecommitdiff
path: root/gnu/build/linux-boot.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-02-07 20:59:13 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-02-13 14:19:05 +0000
commitb41a40564929f40ed3541c8ce740362b3d13de70 (patch)
tree58e054c54e0f66d3640a9f40d54dc4618afe2b6e /gnu/build/linux-boot.scm
parenta4aac98bbb6e6475ba7e35ad0eb82d861e483709 (diff)
downloadguix-b41a40564929f40ed3541c8ce740362b3d13de70.tar.gz
guix-b41a40564929f40ed3541c8ce740362b3d13de70.zip
gnu: go-github-com-mreiferson-go-svc: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-mreiferson-go-svc): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I21f1d5f651fb09a3716cbcdb48aaf7f8dd37384d
Diffstat (limited to 'gnu/build/linux-boot.scm')
0 files changed, 0 insertions, 0 deletions
'>daemon: 'pathExists' uses 'statx' when available....* nix/libutil/util.cc (pathExists) [HAVE_STATX]: New code. Ludovic Courtès 2019-11-27daemon: 'deletePath' uses 'statx' when available....* nix/libutil/util.cc (_deletePath) [HAVE_STATX]: Use 'statx'. Ludovic Courtès 2019-08-30daemon: Don't reply on 'st_blocks'....Ported by Ludovic Courtès <ludo@gnu.org> from <https://github.com/NixOS/nix/commit/a2c4fcd5e9782dc8d2998773380c7171ee53b813>. * nix/libstore/gc.cc (LocalStore::removeUnusedLinks): Use 'st.st_size' instead of 'st.st_blocks * 512'. * nix/libutil/util.cc (_deletePath): Likewise. Eelco Dolstra 2018-12-16daemon: Use unbranded phrases in comments and messages....* nix/libstore/build.cc, nix/libstore/globals.cc, nix/libstore/gc.cc, nix/libstore/local-store.cc, nix/libstore/optimise-store.cc, nix/libstore/store-api.cc, nix/libutil/archive.cc, nix/nix-daemon/nix-daemon.cc: Replace "Nix store" by "store", and "Nix daemon" by "build daemon". Ludovic Courtès 2018-10-02daemon: Remove "case hack" for nars....This code has never been of any use in Guix. * nix/libutil/archive.cc (useCaseHack): Remove. (parse): Keep only the alternate branch in "if (useCaseHack)". Ludovic Courtès 2017-08-18nix: Remove unused function....* nix/libutil/util.hh: * nix/libutil/util.cc (decodeOctalEscaped): Remove unused and buggy function. Andy Wingo 2016-05-31daemon: Remove unused XML output code....* nix/local.mk (libutil_a_SOURCES): Remove libutil/xml-writer.cc. (libutil_headers): Remove libutil/xml-writer.hh. * nix/libutil/xml-writer.hh, nix/libutil/xml-writer.cc: Remove. Ludovic Courtès 2015-12-02daemon: Fix namespace issue.Eelco Dolstra 2015-12-02daemon: Support SHA-512 hashes....Fixes #679. Note: on x86_64, SHA-512 is considerably faster than SHA-256 (198 MB/s versus 131 MB/s). Co-authored-by: Ludovic Courtès <ludo@gnu.org> Eelco Dolstra 2015-12-02daemon: int2String -> std::to_string.Eelco Dolstra