Nix: add libdrm and wayland-protocols overlay

fixes #1055
This commit is contained in:
Mihai Fufezan 2022-11-20 15:31:09 +02:00 committed by Mihai Fufezan
parent f8b9138383
commit 11e841580f
1 changed files with 23 additions and 6 deletions

View File

@ -21,12 +21,29 @@
"x86_64-linux"
];
pkgsFor = genSystems (system: import nixpkgs {
inherit system;
overlays = [(_: prev: {
hwdata = prev.callPackage ./nix/hwdata.nix {};
})];
});
pkgsFor = genSystems (system:
import nixpkgs {
inherit system;
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 "-" [
(builtins.substring 0 4 longDate)