summary refs log tree commit diff
path: root/pkgs/applications/kde/kmime.nix
blob: 4523a69fc1be016edb76f3581f21e95ec0a6b3d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, ki18n,
  kcodecs, qtbase,
}:

mkDerivation {
  name = "kmime";
  meta = {
    license = [ lib.licenses.lgpl21 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kcodecs ki18n qtbase ];
  outputs = [ "out" "dev" ];
}