nixpkgs/pkgs/desktops/kde-4.12/kdeedu/rocs.nix

15 lines
272 B
Nix
Raw Normal View History

2014-02-13 03:25:11 +01:00
{ kde, kdelibs, boost, grantlee }:
kde {
buildInputs = [ kdelibs (boost.override { enableExceptions = true; }) grantlee ];
NIX_CFLAGS_COMPILE = "-fexceptions";
meta = {
description = "A KDE graph theory viewer";
kde = {
name = "rocs";
};
};
}