15 lines
305 B
Nix
15 lines
305 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, karchive
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kservice
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kemoticons";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ karchive kconfig kcoreaddons kservice ];
|
|
}
|