about summary refs log tree commit diff
path: root/nixpkgs/pkgs/kde/frameworks/kiconthemes/default.nix
blob: 378a3f7f87b7d6cacd528c21bd80bdfa24809fb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkKdeDerivation,
  qtdeclarative,
  qtsvg,
  qttools,
}:
mkKdeDerivation {
  pname = "kiconthemes";

  extraBuildInputs = [
    qtdeclarative
    qtsvg
    qttools
  ];
}