qtutilities: Add Darwin to supported platforms

This commit is contained in:
waelwindows 2023-04-15 02:17:28 +03:00
parent 8e3b74171d
commit 1dffb0f917

View file

@ -28,6 +28,6 @@ stdenv.mkDerivation rec {
description = "Common Qt related C++ classes and routines used by @Martchus' applications such as dialogs, widgets and models Topics";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ doronbehar ];
platforms = platforms.linux;
platforms = platforms.linux ++ platforms.darwin;
};
}