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

17 lines
312 B
Nix
Raw Normal View History

2014-02-13 03:25:11 +01:00
{ kde, kdelibs, boost, grantlee }:
2014-09-19 19:56:08 +02:00
let
boostpkg = boost.override { enableExceptions = true; };
in
2014-02-13 03:25:11 +01:00
kde {
2014-09-19 19:56:08 +02:00
buildInputs = [ kdelibs boostpkg boostpkg.lib grantlee ];
2014-02-13 03:25:11 +01:00
NIX_CFLAGS_COMPILE = "-fexceptions";
meta = {
description = "A KDE graph theory viewer";
kde = {
name = "rocs";
};
};
}