From 73cf9a5fdfde3bd2898d7104fa82f3355e76d81b Mon Sep 17 00:00:00 2001 From: Akshit Gaur Date: Sat, 9 May 2026 12:19:34 +0000 Subject: [PATCH] Nice & Renice --- recipes/core/uutils/recipe.toml | 3 ++- recipes/wip/renice/recipe.toml | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 recipes/wip/renice/recipe.toml diff --git a/recipes/core/uutils/recipe.toml b/recipes/core/uutils/recipe.toml index fdfebf99e..929628813 100644 --- a/recipes/core/uutils/recipe.toml +++ b/recipes/core/uutils/recipe.toml @@ -13,7 +13,7 @@ template = "custom" script = """ DYNAMIC_INIT # TODO: upstream changes, consider using feat_require_unix_core if relibc is ready? -CARGO_PROFILE_RELEASE_LTO=thin cookbook_cargo --no-default-features --features feat_os_unix_redox,kill --bin coreutils +CARGO_PROFILE_RELEASE_LTO=thin cookbook_cargo --no-default-features --features feat_os_unix_redox,kill,nice --bin coreutils BINS=( '[' @@ -59,6 +59,7 @@ BINS=( more mv nl + nice nproc numfmt od diff --git a/recipes/wip/renice/recipe.toml b/recipes/wip/renice/recipe.toml new file mode 100644 index 000000000..af96c6be4 --- /dev/null +++ b/recipes/wip/renice/recipe.toml @@ -0,0 +1,5 @@ +[source] +git = "https://gitlab.redox-os.org/akshitgaur2005/renice" + +[build] +template = "cargo"