2019-02-11 21:40:14 +00:00
|
|
|
{
|
2019-09-28 20:16:13 +01:00
|
|
|
mkDerivation, lib,
|
2019-02-11 21:40:14 +00:00
|
|
|
extra-cmake-modules, boost,
|
|
|
|
qtbase, qtscript, qtquickcontrols, qtwebkit, qtxmlpatterns, grantlee,
|
|
|
|
kdoctools, karchive, kxmlgui, kcrash, kdeclarative, ktexteditor, kguiaddons
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2020-12-24 23:05:07 +00:00
|
|
|
pname = "rocs";
|
2019-09-28 20:16:39 +01:00
|
|
|
|
2019-02-11 21:40:14 +00:00
|
|
|
meta = with lib; {
|
2019-09-28 20:16:39 +01:00
|
|
|
homepage = "https://edu.kde.org/rocs/";
|
|
|
|
description = "A graph theory IDE.";
|
2019-02-11 21:40:14 +00:00
|
|
|
license = with licenses; [ gpl2 lgpl21 fdl12 ];
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with maintainers; [ knairda ];
|
|
|
|
};
|
2019-09-28 20:16:39 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
qtbase qtscript qtquickcontrols qtwebkit qtxmlpatterns grantlee
|
|
|
|
kxmlgui kcrash kdeclarative karchive ktexteditor kguiaddons
|
|
|
|
];
|
2019-02-11 21:40:14 +00:00
|
|
|
}
|