17 lines
212 B
Nix
17 lines
212 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtdeclarative,
|
||
|
qtsvg,
|
||
|
qttools,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kiconthemes";
|
||
|
|
||
|
extraBuildInputs = [
|
||
|
qtdeclarative
|
||
|
qtsvg
|
||
|
qttools
|
||
|
];
|
||
|
meta.mainProgram = "kiconfinder6";
|
||
|
}
|