nixpkgs/pkgs/development/libraries/kde-frameworks-5.15/kunitconversion.nix

11 lines
244 B
Nix
Raw Normal View History

2015-10-10 17:50:36 +01:00
{ kdeFramework, lib, extra-cmake-modules, ki18n }:
2015-09-27 16:02:10 +01:00
kdeFramework {
2015-09-27 16:02:10 +01:00
name = "kunitconversion";
nativeBuildInputs = [ extra-cmake-modules ];
2015-10-10 17:50:36 +01:00
propagatedBuildInputs = [ ki18n ];
2015-09-27 16:02:10 +01:00
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}