1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-06 23:31:34 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks-5.13/kxmlrpcclient.nix
Thomas Tuegel 5ba93bd4c3 kf513: don't override mkDerivation
Provides a globally unique name (kdeFramework) instead of using
attribute paths as namespaces and locally overloading the mkDerivation
name.
2015-09-29 16:57:26 -05:00

16 lines
275 B
Nix

{ kdeFramework, lib
, extra-cmake-modules
, ki18n
, kio
}:
kdeFramework {
name = "kxmlrpcclient";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ ki18n ];
propagatedBuildInputs = [ kio ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}