mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
09af15654f
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
11 lines
251 B
Nix
11 lines
251 B
Nix
{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }:
|
|
|
|
kdeFramework {
|
|
name = "kxmlrpcclient";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ ki18n kio ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|