mongodb-6_0: restrict platform to linux

This commit is contained in:
pacien 2022-09-10 23:35:20 +02:00
parent 9f39226978
commit 9201d1163e

View file

@ -197,6 +197,9 @@ in stdenv.mkDerivation rec {
inherit license;
maintainers = with maintainers; [ bluescreen303 offline cstrahan ];
platforms = subtractLists systems.doubles.i686 systems.doubles.unix;
platforms = subtractLists systems.doubles.i686 (
if (versionAtLeast version "6.0") then systems.doubles.linux
else systems.doubles.unix
);
};
}