about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.12/kdeedu/rocs.nix
blob: 135598ded90a2621e74508988fbe6ce58b2e7e2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ kde, kdelibs, boost, grantlee }:
let
  boostpkg = boost.override { enableExceptions = true; };
in
kde {
  buildInputs = [ kdelibs boostpkg boostpkg.lib grantlee ];

  NIX_CFLAGS_COMPILE = "-fexceptions";

  meta = {
    description = "A KDE graph theory viewer";
    kde = {
      name = "rocs";
    };
  };
}