mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 21:25:58 +01:00
parent
f8b9138383
commit
11e841580f
1 changed files with 23 additions and 6 deletions
29
flake.nix
29
flake.nix
|
@ -21,12 +21,29 @@
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
];
|
];
|
||||||
|
|
||||||
pkgsFor = genSystems (system: import nixpkgs {
|
pkgsFor = genSystems (system:
|
||||||
inherit system;
|
import nixpkgs {
|
||||||
overlays = [(_: prev: {
|
inherit system;
|
||||||
hwdata = prev.callPackage ./nix/hwdata.nix {};
|
overlays = [
|
||||||
})];
|
(_: prev: {
|
||||||
});
|
hwdata = prev.callPackage ./nix/hwdata.nix {};
|
||||||
|
libdrm = prev.libdrm.overrideAttrs (old: rec {
|
||||||
|
version = "2.4.114";
|
||||||
|
src = prev.fetchurl {
|
||||||
|
url = "https://dri.freedesktop.org/${old.pname}/${old.pname}-${version}.tar.xz";
|
||||||
|
sha256 = "sha256-MEnPhDpH0S5e7vvDvjSW14L6CfQjRr8Lfe/j0eWY0CY=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
wayland-protocols = prev.wayland-protocols.overrideAttrs (old: rec {
|
||||||
|
version = "1.29";
|
||||||
|
src = prev.fetchurl {
|
||||||
|
url = "https://gitlab.freedesktop.org/wayland/${old.pname}/-/releases/${version}/downloads/${old.pname}-${version}.tar.xz";
|
||||||
|
hash = "sha256-4l6at1rHNnBN3v6S6PmshzC+q29WTbYvetaVu6T/ntg=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
mkDate = longDate: (lib.concatStringsSep "-" [
|
mkDate = longDate: (lib.concatStringsSep "-" [
|
||||||
(builtins.substring 0 4 longDate)
|
(builtins.substring 0 4 longDate)
|
||||||
|
|
Loading…
Reference in a new issue