nixpkgs/pkgs/applications/kde/rocs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
715 B
Nix
Raw Normal View History

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