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

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