overlays/corectrl: init; fixes build failure on linux 6.6

This commit is contained in:
LavaDesu 2023-12-16 00:16:10 +07:00
parent dff42e604b
commit a22f09493b
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 38 additions and 0 deletions

16
overlays/corectrl.nix Normal file
View file

@ -0,0 +1,16 @@
self: super: {
# copied from nixpkgs 94d828a5033b688af09b02983aad37ecf529bf3c to fix corectrl build failure on linux 6.6
# awaiting merge into unstable
corectrl = super.corectrl.overrideAttrs (old: rec {
version = "1.3.8";
src = self.fetchFromGitLab {
owner = "corectrl";
repo = "corectrl";
rev = "v${version}";
sha256 = "sha256-lc6yWzJiSzGKMzJIpgOtirJONsh49vXWDWrhLV/erwQ=";
};
patches = [ ./patches/corectrl.patch ];
});
}