s6-linux-utils: 2.5.1.7 -> 2.6.0.0

This commit is contained in:
Kylie McClain 2022-06-30 00:28:03 -04:00 committed by Alyssa Ross
parent d246edf60e
commit 86ca4f599c

View file

@ -4,8 +4,8 @@ with skawarePackages;
buildPackage {
pname = "s6-linux-utils";
version = "2.5.1.7";
sha256 = "1n6zmnczbybwcchkhg5zqixz8mdk5bfn0sxq0kxifgpi9ggw5a46";
version = "2.6.0.0";
sha256 = "sha256-bHEyc0oMgocALuaRDEafF1qX12aoAjwMM6+LqSZD7Vk=";
description = "A set of minimalistic Linux-specific system utilities";
platforms = lib.platforms.linux;
@ -24,7 +24,7 @@ buildPackage {
postInstall = ''
# remove all s6 executables from build directory
rm $(find -name "s6-*" -type f -mindepth 1 -maxdepth 1 -executable)
rm $(find -name "s6-*" -type f -mindepth 1 -maxdepth 1 -executable) rngseed
mv doc $doc/share/doc/s6-linux-utils/html
'';