summary refs log tree commit diff
path: root/pkgs/applications/video/vvave/default.nix
blob: 1612ce4200121f385d7d70b58683d4ec49b00966 (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
49
50
51
52
53
54
55
56
57
58
59
{ lib
, mkDerivation
, fetchFromGitLab
, cmake
, extra-cmake-modules
, applet-window-buttons
, karchive
, kcoreaddons
, ki18n
, kio
, kirigami2
, mauikit
, mauikit-accounts
, mauikit-filebrowsing
, qtmultimedia
, qtquickcontrols2
, taglib
}:

mkDerivation rec {
  pname = "vvave";
  version = "2.1.1";

  src = fetchFromGitLab {
    domain = "invent.kde.org";
    owner = "maui";
    repo = "vvave";
    rev = "v${version}";
    sha256 = "sha256-ykX1kd3106KTDTJQIGk6miSgbj+oROiXQl/nkCjTphE=";
  };

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

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

  meta = with lib; {
    description = "Multi-platform media player";
    homepage = "https://invent.kde.org/maui/vvave";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ onny ];
  };
}