xmedcon: fix meta.platforms

platforms.darwin and platforms.linux are both lists. They need to be
concatenated, otherwise they're not recognized as supported platforms.
This commit is contained in:
Florian Klink 2021-11-05 15:24:53 +01:00
parent 7f2b8a3beb
commit 0886f51b37

View File

@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
homepage = "https://xmedcon.sourceforge.io/Main/HomePage";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ arianvp flokli ];
platforms = with platforms; [ darwin linux ];
platforms = platforms.darwin ++ platforms.linux;
};
}