flake.nix: override wayland

This commit is contained in:
Mihai Fufezan 2023-04-23 23:43:48 +03:00 committed by Mihai Fufezan
parent 67c73ec100
commit 1a91c6ee60
1 changed files with 15 additions and 1 deletions

View File

@ -32,7 +32,21 @@
"x86_64-linux"
];
pkgsFor = nixpkgs.legacyPackages;
pkgsFor = genSystems (system:
import nixpkgs {
inherit system;
overlays = [
(_: prev: {
wayland = prev.wayland.overrideAttrs (old: rec {
version = "1.22.0";
src = prev.fetchurl {
url = "https://gitlab.freedesktop.org/wayland/wayland/-/releases/${version}/downloads/${old.pname}-${version}.tar.xz";
hash = "sha256-FUCvHqaYpHHC2OnSiDMsfg/TYMjx0Sk267fny8JCWEI=";
};
});
})
];
});
props = builtins.fromJSON (builtins.readFile ./props.json);