about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kmag.nix
blob: ba1bb8d18515c103d50653197a70ce8982156a12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio }:

mkDerivation {
  pname = "kmag";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/utilities/org.kde.kmag";
    description = "A small Linux utility to magnify a part of the screen";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kdoctools
    ki18n
    kio
  ];
}