summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.5/artwork/nuvola-icon-theme.nix
blob: 8bd1f4011367d293718e89ca2bb022cb4e9821de (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-${kde.release}";
  
  # 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";
    };
  };
}