mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
09af15654f
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
18 lines
332 B
Nix
18 lines
332 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, karchive
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kservice
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kemoticons";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ karchive kconfig kcoreaddons ];
|
|
propagatedBuildInputs = [ kservice ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|