diff --git a/pkgs/applications/kde/rocs.nix b/pkgs/applications/kde/rocs.nix index 0c007b3f09b..feae7ca81de 100644 --- a/pkgs/applications/kde/rocs.nix +++ b/pkgs/applications/kde/rocs.nix @@ -7,16 +7,19 @@ mkDerivation { name = "rocs"; - nativeBuildInputs = [ extra-cmake-modules makeWrapper kdoctools ]; + + meta = with lib; { + homepage = "https://edu.kde.org/rocs/"; + description = "A graph theory IDE."; + license = with licenses; [ gpl2 lgpl21 fdl12 ]; + platforms = lib.platforms.linux; + maintainers = with maintainers; [ knairda ]; + }; + + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; buildInputs = [ boost qtbase qtscript qtquickcontrols qtwebkit qtxmlpatterns grantlee kxmlgui kcrash kdeclarative karchive ktexteditor kguiaddons ]; - meta = with lib; { - homepage = http://www.kde.org; - license = with licenses; [ gpl2 lgpl21 fdl12 ]; - platforms = lib.platforms.linux; - maintainers = with maintainers; [ knairda ]; - }; }