qvge: enable on darwin

+3 -2
+3 -2
pkgs/applications/graphics/qvge/default.nix
··· 3 3 , fetchFromGitHub 4 4 , substituteAll 5 5 , qmake 6 + , qtsvg 6 7 , qtx11extras 7 8 , graphviz 8 9 }: ··· 27 28 28 29 nativeBuildInputs = [ qmake ]; 29 30 30 - buildInputs = [ qtx11extras ]; 31 + buildInputs = if stdenv.isDarwin then [ qtsvg ] else [ qtx11extras ]; 31 32 32 33 meta = with lib; { 33 34 description = "Qt Visual Graph Editor"; 34 35 homepage = "https://github.com/ArsMasiuk/qvge"; 35 36 license = licenses.mit; 36 37 maintainers = with maintainers; [ sikmir ]; 37 - platforms = with platforms; linux; 38 + platforms = platforms.unix; 38 39 }; 39 40 }