This commit is contained in:
Sebastian Moser
2024-01-23 15:03:48 +01:00
parent 22d3e2bd96
commit d21bc3c7c5
19 changed files with 643 additions and 17 deletions

27
mods/second-overlay.nix Normal file
View File

@@ -0,0 +1,27 @@
{ nixpkgs, ... }: final: prev: {
#at-spi2-core = prev.at-spi2-core.override {
#withIntrospection = false;
#};
/*
gsettings-desktop-schemas = prev.gsettings-desktop-schemas.override {
withIntrospection = true;
#gobject-introspection = prev.callPackage ./static/gobject-introspection.nix { inherit nixpkgs; };
gobject-introspection = prev.callPackage ./static/gobject-introspection.nix { inherit nixpkgs; };
};
*/
/*
gsettings-desktop-schemas = prev.gsettings-desktop-schemas.overrideAttrs (innerFinal: innerPrev: {
nativeBuildInputs = with prev; [
glib
meson
ninja
pkg-config
gobject-introspection
(prev.callPackage ./static/gobject-introspection.nix { inherit nixpkgs; })
];
});
*/
}