mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 20:06:00 +01:00
Nix: override wayland-protocols
This commit is contained in:
parent
47eac4be1c
commit
3dca2fd61e
1 changed files with 14 additions and 1 deletions
15
flake.nix
15
flake.nix
|
@ -20,7 +20,20 @@
|
||||||
"aarch64-linux"
|
"aarch64-linux"
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
];
|
];
|
||||||
pkgsFor = nixpkgs.legacyPackages;
|
|
||||||
|
pkgsFor = genSystems (system: import nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
overlays = [(_: prev: {
|
||||||
|
wayland-protocols = prev.wayland-protocols.overrideAttrs (old: rec {
|
||||||
|
version = "1.27";
|
||||||
|
src = prev.fetchurl {
|
||||||
|
url = "https://gitlab.freedesktop.org/wayland/${old.pname}/-/releases/${version}/downloads/${old.pname}-${version}.tar.xz";
|
||||||
|
hash = "sha256-kEbxCkJdTioAlloDrPtrP7V1pWUDrHLCuGghxpZTN1w=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})];
|
||||||
|
});
|
||||||
|
|
||||||
mkDate = longDate: (lib.concatStringsSep "-" [
|
mkDate = longDate: (lib.concatStringsSep "-" [
|
||||||
(builtins.substring 0 4 longDate)
|
(builtins.substring 0 4 longDate)
|
||||||
(builtins.substring 4 2 longDate)
|
(builtins.substring 4 2 longDate)
|
||||||
|
|
Loading…
Reference in a new issue