summary refs log tree commit diff
path: root/pkgs/applications/kde/kmime.nix
blob: d60909ec7bc946396dfa9fbe6702d8bb3625c0dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  kdeApp, lib,
  ecm, ki18n,
  kcodecs
}:

kdeApp {
  name = "kmime";
  meta = {
    license = [ lib.licenses.lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ ecm ki18n ];
  buildInputs = [ kcodecs ];
}