Nix: add hwdata overlay (#1010)

This commit is contained in:
Mihai Fufezan
2022-11-13 21:32:15 +02:00
committed by GitHub
parent a7ed3a5e47
commit 1a14841a75
3 changed files with 31 additions and 7 deletions

View File

@@ -24,13 +24,7 @@
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=";
};
});
hwdata = prev.callPackage ./nix/hwdata.nix {};
})];
});