summary refs log tree commit diff
path: root/pkgs/applications/kde/kdialog.nix
blob: ea7393e72261b86e7479949f711f2be86e8975a8 (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,
  kinit, kguiaddons, kwindowsystem
}:

mkDerivation {
  pname = "kdialog";

  meta = {
    homepage = "https://apps.kde.org/kdialog/";
    description = "Display dialog boxes from shell scripts";
    license = with lib.licenses; [ gpl2Plus fdl12Plus ];
    maintainers = with lib.maintainers; [ peterhoeg ];
  };

  nativeBuildInputs = [ extra-cmake-modules kdoctools ];

  propagatedBuildInputs = [ kinit kguiaddons kwindowsystem ];
}