nixpkgs: 2025-06-27 -> 2025-07-02

This commit is contained in:
2025-07-02 19:52:46 +00:00
parent f1b8fd7a9d
commit 722c94d169
4 changed files with 19 additions and 13 deletions

View File

@@ -130,10 +130,16 @@ in
# # };
# };
# gvfs = super.gvfs.override {
# # saves 20 minutes of build time and cross issues, for unused feature
# samba = null;
# };
gvfs = super.gvfs.override {
# saves 20 minutes of build time and cross issues, for unused feature
# samba = null;
# XXX(2025-07-02): avoid cross compilation error on thin-provisioning-tools by disabling the thing which pulls it in.
# see: <https://github.com/stratis-storage/devicemapper-rs/issues/965>
# however, thin-provisioning-tools uses `devicemapper` crate -- not `devicemapper-sys`;
# unclear if `devicemapper` intends to support this; manually enabling the feature did not fix any build error;
# my error seems to be that `devicemapper` is compiled _to the wrong platform_ (maybe the issue is in thin-provisioning-tools' build script)
udevSupport = false;
};
# haredoc = super.haredoc.override {
# hareHook = crossHareHook;