summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kunitconversion.nix
blob: d6c079fd83b846111a57d96bce548afe907442e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ mkDerivation, lib, extra-cmake-modules, ki18n, qtbase, }:

mkDerivation {
  name = "kunitconversion";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ ki18n qtbase ];
  outputs = [ "out" "dev" ];
}