Merge #129412: makeself: disable tests for now
Also improve the busybox-sandbox-shell. (cherry picked from commit 00c86ad14639887ec495b92ada9cd93a75317686) The makeself problem is blocking the nixos-21.05 channel now.
This commit is contained in:
parent
d3ebf03151
commit
9d1350d9d5
|
@ -12,9 +12,12 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "07cq7q71bv3fwddkp2863ylry2ivds00f8sjy8npjpdbkailxm21";
|
||||
};
|
||||
|
||||
patchPhase = "patchShebangs test";
|
||||
postPatch = "patchShebangs test";
|
||||
|
||||
doCheck = true;
|
||||
# Issue #110149: our default /bin/sh apparently has 32-bit math only
|
||||
# (attribute busybox-sandbox-shell), and that causes problems
|
||||
# when running these tests inside build, based on free disk space.
|
||||
doCheck = false;
|
||||
checkTarget = "test";
|
||||
checkInputs = [ which zstd pbzip2 ];
|
||||
|
||||
|
@ -31,7 +34,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://megastep.org/makeself";
|
||||
homepage = "https://makeself.io";
|
||||
description = "Utility to create self-extracting packages";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.wmertens ];
|
||||
|
|
|
@ -8,6 +8,7 @@ busybox.override {
|
|||
CONFIG_FEATURE_FANCY_ECHO y
|
||||
CONFIG_FEATURE_SH_MATH y
|
||||
CONFIG_FEATURE_SH_MATH_64 y
|
||||
CONFIG_FEATURE_TEST_64 y
|
||||
|
||||
CONFIG_ASH y
|
||||
CONFIG_ASH_OPTIMIZE_FOR_SIZE y
|
||||
|
|
Loading…
Reference in New Issue