Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
26 lines
731 B
Nix
26 lines
731 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, boost,
|
|
qtbase, qtscript, qtquickcontrols, qtxmlpatterns, grantlee,
|
|
kdoctools, karchive, kxmlgui, kcrash, kdeclarative, ktexteditor, kguiaddons
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "rocs";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://edu.kde.org/rocs/";
|
|
description = "Graph theory IDE";
|
|
mainProgram = "rocs";
|
|
license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with maintainers; [ knairda ];
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
boost
|
|
qtbase qtscript qtquickcontrols qtxmlpatterns grantlee
|
|
kxmlgui kcrash kdeclarative karchive ktexteditor kguiaddons
|
|
];
|
|
}
|