aboutsummaryrefslogtreecommitdiff
path: root/etc/guix-gc.timer
diff options
context:
space:
mode:
authorTroy Figiel <troy@troyfigiel.com>2023-11-11 19:19:16 +0100
committerLudovic Courtès <ludo@gnu.org>2023-11-15 18:29:38 +0100
commit416ae9ad8973ec8a4099914153f4d160b91ee77e (patch)
treeaa06cab0233323cab0a07bdab42b7549964e0cab /etc/guix-gc.timer
parent7c9e26484959a358946dc061e15104437961c08b (diff)
downloadguix-416ae9ad8973ec8a4099914153f4d160b91ee77e.tar.gz
guix-416ae9ad8973ec8a4099914153f4d160b91ee77e.zip
gnu: Add python-tdda.
* gnu/packages/python-science.scm (python-tdda): New variable. Change-Id: I456aa236b3348e5b990289d8a381c2d5276a12f1 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'etc/guix-gc.timer')
0 files changed, 0 insertions, 0 deletions
/tr> 2019-11-27daemon: GC remove-unused-links phase uses 'statx' when available....* config-daemon.ac: Check for 'statx'. * nix/libstore/gc.cc (LocalStore::removeUnusedLinks) [HAVE_STATX]: Use 'statx' instead of 'lstat'. Ludovic Courtès 2019-11-13daemon: Don't include <linux/fs.h>....As of GNU libc 2.29, <sys/mount.h> declares all the constants and functions we need, so there's no use in including <linux/fs.h> anymore. This silences annoying warnings like this one: In file included from nix/libstore/local-store.cc:32:0: /gnu/store/…-linux-libre-headers-4.19.56/include/linux/fs.h:108:0: warning: "MS_RDONLY" redefined #define MS_RDONLY 1 /* Mount read-only */ In file included from nix/libstore/local-store.cc:28:0: /gnu/store/…-glibc-2.29/include/sys/mount.h:36:0: note: this is the location of the previous definition #define MS_RDONLY MS_RDONLY * config-daemon.ac: Remove check for <linux/fs.h>. * nix/libstore/build.cc: Remove conditional inclusion of <linux/fs.h>. * nix/libstore/local-store.cc: Remove "#if HAVE_LINUX_FS_H" and inclusion of <linux/fs.h>. Ludovic Courtès