overlays/corectrl: init; fixes build failure on linux 6.6
This commit is contained in:
parent
dff42e604b
commit
a22f09493b
3 changed files with 38 additions and 0 deletions
16
overlays/corectrl.nix
Normal file
16
overlays/corectrl.nix
Normal 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 ];
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue