mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
ithc: mark broken for kernels >= 6.10
This was fixed upstream in https://github.com/quo/ithc-linux/pull/30
However, according to their README, the driver is included in the Linux
Surface kernel already, see [1].
That may call into question the need to keep it in Nixpkgs long term,
specially when NixOS/nixos-hardware[2] already uses those patches
----
[1]: 0b8b45d
[2]: https://github.com/NixOS/nixos-hardware/tree/master/microsoft/surface)
This commit is contained in:
parent
7cbbfaf43d
commit
7fd92eb829
1 changed files with 1 additions and 1 deletions
|
@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
|
||||||
license = licenses.publicDomain;
|
license = licenses.publicDomain;
|
||||||
maintainers = with maintainers; [ aacebedo ];
|
maintainers = with maintainers; [ aacebedo ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
broken = kernel.kernelOlder "5.9";
|
broken = kernel.kernelOlder "5.9" || kernel.kernelAtLeast "6.10";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue