mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 20:45:58 +01:00
flake: add libdrm overlay until it gets updated
This commit is contained in:
parent
8b46d0b5a9
commit
d49af1cc18
1 changed files with 25 additions and 1 deletions
26
flake.nix
26
flake.nix
|
@ -20,7 +20,31 @@
|
||||||
"aarch64-linux"
|
"aarch64-linux"
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
];
|
];
|
||||||
pkgsFor = nixpkgs.legacyPackages;
|
pkgsFor = genSystems (system:
|
||||||
|
import nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
overlays = [
|
||||||
|
(_: prev: {
|
||||||
|
libdrm = prev.libdrm.overrideAttrs (old: rec {
|
||||||
|
version = "2.4.113";
|
||||||
|
src = prev.fetchurl {
|
||||||
|
url = "https://dri.freedesktop.org/${old.pname}/${old.pname}-${version}.tar.xz";
|
||||||
|
sha256 = "sha256-f9frKWf2O+tGBvItUOJ32ZNIDQXvdd2Iqb2OZ3Mj5eE=";
|
||||||
|
};
|
||||||
|
mesonFlags =
|
||||||
|
[
|
||||||
|
"-Dinstall-test-programs=true"
|
||||||
|
"-Domap=enabled"
|
||||||
|
"-Dcairo-tests=disabled"
|
||||||
|
]
|
||||||
|
++ lib.optionals prev.stdenv.hostPlatform.isAarch [
|
||||||
|
"-Dtegra=enabled"
|
||||||
|
"-Detnaviv=enabled"
|
||||||
|
];
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
});
|
||||||
mkDate = longDate: (lib.concatStringsSep "-" [
|
mkDate = longDate: (lib.concatStringsSep "-" [
|
||||||
(__substring 0 4 longDate)
|
(__substring 0 4 longDate)
|
||||||
(__substring 4 2 longDate)
|
(__substring 4 2 longDate)
|
||||||
|
|
Loading…
Reference in a new issue