about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.5/artwork/nuvola-icon-theme.nix
blob: 05148567ea7d9ebe1ef1d6f54bd921f83fc7921e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cmake, kde, automoc4, kdelibs }:

kde.package rec {
  name = "nuvola-icon-theme-${meta.kde.version}";
# Sources contain primary and kdeclassic as well but they're not installed

  buildInputs = [ cmake automoc4 kdelibs ];
  meta = {
    description = "KDE nuvola icon theme";
    kde = {
      name = "IconThemes";
      module = "kdeartwork";
      version = "4.5.2";
    };
  };
}