summary refs log tree commit diff
path: root/pkgs/applications/maui/clip.nix
blob: 10df8c47dfc3cd74db372ad43413db2b9263422b (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
37
38
39
40
41
42
43
44
45
46
47
48
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, applet-window-buttons
, karchive
, kcoreaddons
, ki18n
, kio
, kirigami2
, mauikit
, mauikit-filebrowsing
, qtmultimedia
, qtquickcontrols2
, taglib
, ffmpeg
}:

mkDerivation {
  pname = "clip";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    applet-window-buttons
    karchive
    kcoreaddons
    ki18n
    kio
    kirigami2
    mauikit
    mauikit-filebrowsing
    qtmultimedia
    qtquickcontrols2
    taglib
    ffmpeg
  ];

  meta = with lib; {
    description = "Video player and video collection manager";
    homepage = "https://invent.kde.org/maui/clip";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ onny ];
  };
}