uutils-coreutils: 0.1.0 -> 0.2.0

Diff: https://github.com/uutils/coreutils/compare/0.1.0...0.2.0

Changelog: https://github.com/uutils/coreutils/releases/tag/0.2.0

+10 -11
+3 -3
pkgs/by-name/uu/uutils-coreutils/package.nix
··· 21 21 22 22 stdenv.mkDerivation (finalAttrs: { 23 23 pname = "uutils-coreutils"; 24 - version = "0.1.0"; 24 + version = "0.2.0"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "uutils"; 28 28 repo = "coreutils"; 29 29 tag = finalAttrs.version; 30 - hash = "sha256-nKKjc6Bui7k50SR7BY09dRGt3Za1Ch/E+3KiCO5KtOg="; 30 + hash = "sha256-jxjg2RIZaemA6jgfdE1KX8G6c/NWumecoJMFx7dspz8="; 31 31 }; 32 32 33 33 cargoDeps = rustPlatform.fetchCargoVendor { 34 34 inherit (finalAttrs) src; 35 35 name = "uutils-coreutils-${finalAttrs.version}"; 36 - hash = "sha256-PTIypl9uqFkp6GrF7Pp40AItbWFlXT2V2x/C8L2J8S0="; 36 + hash = "sha256-SFuAWzmYd1N7czUyC/7CYrCObYfoKrC5oORFxXtbwhE="; 37 37 }; 38 38 39 39 patches = [
+7 -8
pkgs/by-name/uu/uutils-coreutils/selinux_no_auto_detect.diff
··· 1 1 diff --git a/GNUmakefile b/GNUmakefile 2 - index f46126a82..44be8f13b 100644 2 + index 20dc731d3..400e5b84f 100644 3 3 --- a/GNUmakefile 4 4 +++ b/GNUmakefile 5 - @@ -57,20 +57,6 @@ TOYBOX_ROOT := $(BASEDIR)/tmp 6 - TOYBOX_VER := 0.8.12 7 - TOYBOX_SRC := $(TOYBOX_ROOT)/toybox-$(TOYBOX_VER) 5 + @@ -69,19 +69,6 @@ TOYBOX_SRC := $(TOYBOX_ROOT)/toybox-$(TOYBOX_VER) 6 + #------------------------------------------------------------------------ 7 + OS ?= $(shell uname -s) 8 8 9 - - 10 9 -ifdef SELINUX_ENABLED 11 10 - override SELINUX_ENABLED := 0 12 11 -# Now check if we should enable it (only on non-Windows) ··· 23 22 # Possible programs 24 23 PROGS := \ 25 24 base32 \ 26 - @@ -181,8 +167,10 @@ SELINUX_PROGS := \ 25 + @@ -200,8 +187,10 @@ endif 27 26 28 27 ifneq ($(OS),Windows_NT) 29 28 PROGS := $(PROGS) $(UNIX_PROGS) ··· 32 31 - PROGS := $(PROGS) $(SELINUX_PROGS) 33 32 + PROGS := $(PROGS) $(SELINUX_PROGS) 34 33 + endif 34 + # Always use external libstdbuf when building with make (Unix only) 35 + CARGOFLAGS += --features feat_external_libstdbuf 35 36 endif 36 - 37 - UTILS ?= $(PROGS)