nixpkgs/pkgs/applications/kde/rocs.nix

26 lines
715 B
Nix
Raw Permalink Normal View History

2019-02-11 21:40:14 +00:00
{
2019-09-28 19:16:13 +00: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 19:16:39 +00:00
2019-02-11 21:40:14 +00:00
meta = with lib; {
2019-09-28 19:16:39 +00: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 19:16:39 +00: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
}