scx: add aarch64-linux to badPlatforms

This commit is contained in:
John Titor
2024-11-23 01:15:37 +05:30
parent b10effcf0f
commit a08c650eb5
3 changed files with 3 additions and 18 deletions
+1
View File
@@ -21,6 +21,7 @@ let
changelog = "https://github.com/sched-ext/scx/releases/tag/v${versionInfo.scx.version}";
license = lib.licenses.gpl2Only;
platforms = lib.platforms.linux;
badPlatforms = [ "aarch64-linux" ];
maintainers = with lib.maintainers; [ johnrtitor ];
};
};
+1 -9
View File
@@ -121,7 +121,7 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: {
# Enable this when default kernel in nixpkgs is 6.12+
doCheck = false;
meta = {
meta = scx-common.meta // {
description = "Sched-ext C userspace schedulers";
longDescription = ''
This includes C based schedulers such as scx_central, scx_flatcg,
@@ -132,13 +132,5 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: {
It is recommended to use the latest kernel for the best compatibility.
:::
'';
inherit (scx-common.meta)
homepage
changelog
license
platforms
maintainers
;
};
})
@@ -57,7 +57,7 @@ rustPlatform.buildRustPackage {
# Enable this when default kernel in nixpkgs is 6.12+
doCheck = false;
meta = {
meta = scx-common.meta // {
description = "Sched-ext Rust userspace schedulers";
longDescription = ''
This includes Rust based schedulers such as
@@ -68,13 +68,5 @@ rustPlatform.buildRustPackage {
It is recommended to use the latest kernel for the best compatibility.
:::
'';
inherit (scx-common.meta)
homepage
changelog
license
platforms
maintainers
;
};
}