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:
parent
7f2b8a3beb
commit
0886f51b37
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user