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"