nixpkgs/pkgs/applications/kde/rocs.nix

26 lines
714 B
Nix
Raw Normal View History

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