socat: add musl test
A couple of recent upgrades have broken socat on Musl, so it would be nice to catch these in advance.
This commit is contained in:
parent
e7b18c180c
commit
3539dd6988
@ -5,6 +5,7 @@
|
||||
, readline
|
||||
, stdenv
|
||||
, which
|
||||
, buildPackages
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -30,6 +31,10 @@ stdenv.mkDerivation rec {
|
||||
nativeCheckInputs = [ which nettools ];
|
||||
doCheck = false; # fails a bunch, hangs
|
||||
|
||||
passthru.tests = lib.optionalAttrs stdenv.buildPlatform.isLinux {
|
||||
musl = buildPackages.pkgsMusl.socat;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Utility for bidirectional data transfer between two independent data channels";
|
||||
homepage = "http://www.dest-unreach.org/socat/";
|
||||
|
Loading…
Reference in New Issue
Block a user