From 4dc1971211d61ae5a16bea26ea56dc36f3a3e55a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 28 Sep 2019 14:16:39 -0500 Subject: [PATCH] rocs: Fix meta --- pkgs/applications/kde/rocs.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/kde/rocs.nix b/pkgs/applications/kde/rocs.nix index 0c007b3f09b1..feae7ca81dec 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 ]; - }; }