mongodb-6_0: restrict platform to linux
This commit is contained in:
parent
9f39226978
commit
9201d1163e
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue