mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
fractional scaling in X11
This commit is contained in:
parent
b7e13bfd6d
commit
42d601e935
@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
# Overlays.
|
# Overlays.
|
||||||
# https://nixos.wiki/wiki/Overlays#In_NixOS
|
# https://nixos.wiki/wiki/Overlays#In_NixOS
|
||||||
|
# https://discourse.nixos.org/t/use-specific-pkg-version-in-overlay/32741/3
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(
|
(
|
||||||
# Patched version of mutter 44.2.
|
# Patched version of mutter 44.2.
|
||||||
@ -32,15 +33,19 @@
|
|||||||
final: prev: {
|
final: prev: {
|
||||||
# Elements of pkgs.gnome must be taken from gfinal and gprev.
|
# Elements of pkgs.gnome must be taken from gfinal and gprev.
|
||||||
gnome = prev.gnome.overrideScope' (gfinal: gprev: {
|
gnome = prev.gnome.overrideScope' (gfinal: gprev: {
|
||||||
mutter = gprev.mutter.overrideAttrs (oldAttrs: {
|
mutter = gprev.mutter.overrideAttrs (oldAttrs:
|
||||||
patches = (oldAttrs.patches or []) ++ [
|
if oldAttrs.version == "44.2" then
|
||||||
(prev.fetchpatch {
|
{
|
||||||
url = "https://salsa.debian.org/gnome-team/mutter/-/raw/ubuntu/44.2-3ubuntu1/debian/patches/ubuntu/x11-Add-support-for-fractional-scaling-using-Randr.patch";
|
patches = (oldAttrs.patches or []) ++ [
|
||||||
# Determining the hash: https://github.com/NixOS/nixpkgs/issues/191128#issuecomment-1246030431
|
(prev.fetchpatch {
|
||||||
hash = "sha256-GCtz87C1NgxenYE5nbxcIIxqNhutmdngscnlK10fRyQ=";
|
url = "https://salsa.debian.org/gnome-team/mutter/-/raw/ubuntu/44.2-3ubuntu1/debian/patches/ubuntu/x11-Add-support-for-fractional-scaling-using-Randr.patch";
|
||||||
})
|
# Determining the hash: https://github.com/NixOS/nixpkgs/issues/191128#issuecomment-1246030431
|
||||||
];
|
hash = "sha256-GCtz87C1NgxenYE5nbxcIIxqNhutmdngscnlK10fRyQ=";
|
||||||
});
|
})
|
||||||
|
];
|
||||||
|
}
|
||||||
|
else throw "Mutter version mismatch. Please update patch."
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user