nixpkgs-suyu/pkgs/development/libraries/kde-frameworks-5.15/kemoticons.nix

18 lines
332 B
Nix
Raw Normal View History

{ kdeFramework, lib
2015-09-27 17:02:10 +02:00
, extra-cmake-modules
, karchive
, kconfig
, kcoreaddons
, kservice
}:
kdeFramework {
2015-09-27 17:02:10 +02:00
name = "kemoticons";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ karchive kconfig kcoreaddons ];
propagatedBuildInputs = [ kservice ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}