summary refs log tree commit diff
path: root/pkgs/applications/kde/kmime.nix
blob: b18a3f7fdc1e4c35e4f6f896e86c401632fb8763 (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 ki18n ];
  buildInputs = [ kcodecs qtbase ];
  outputs = [ "out" "dev" ];
}