summary refs log tree commit diff
path: root/pkgs/applications/audio/playbar2/default.nix
blob: 15385e91927c67635b98d72761fa45dde94ce810 (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
{ stdenv
, cmake
, extra-cmake-modules
, plasma-framework
, kwindowsystem
, fetchFromGitHub
}:

stdenv.mkDerivation rec {
  pname = "playbar2";
  version = "2.5";

  src = fetchFromGitHub {
    owner = "audoban";
    repo = "PlayBar2";
    rev = "v${version}";
    sha256 = "0iv2m4flgaz2r0k7f6l0ca8p6cw8j8j2gin1gci2pg3l5g5khbch";
  };

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    plasma-framework
    kwindowsystem
  ];

  meta = with stdenv.lib; {
    description = "Mpris2 Client for Plasma5";
    homepage = "https://github.com/audoban/PlayBar2";
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ pjones ];
  };
}