summary refs log tree commit diff
path: root/pkgs/applications/plasma-mobile/krecorder.nix
blob: c41413be8842e7e98f49d6893ef6db0e223831b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib
, mkDerivation

, cmake
, extra-cmake-modules

, kconfig
, ki18n
, kirigami2
, qtmultimedia
, qtquickcontrols2
}:

mkDerivation rec {
  pname = "krecorder";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    kconfig
    ki18n
    kirigami2
    qtmultimedia
    qtquickcontrols2
  ];

  meta = with lib; {
    description = "Audio recorder for Plasma Mobile";
    homepage = "https://invent.kde.org/plasma-mobile/krecorder";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ samueldr ];
  };
}