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

mkDerivation {
  name = "kdegraphics-mobipocket";
  meta = {
    license = [ lib.licenses.gpl2Plus ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kio ];
  outputs = [ "out" "dev" ];
}