about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/rocs.nix
blob: 80f5f4bb6d650a56efdb4b342347328d66474001 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  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 = "A graph theory IDE.";
    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
  ];
}