about summary refs log tree commit diff
path: root/pkgs/kde/misc/mpvqt/default.nix
blob: 84d78e26bc0006a0a44ce8284742946eaca50514 (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
{
  lib,
  mkKdeDerivation,
  fetchFromGitLab,
  mpv-unwrapped,
  qtdeclarative,
}:
mkKdeDerivation rec {
  pname = "mpvqt";
  version = "1.0.0";

  src = fetchFromGitLab {
    domain = "invent.kde.org";
    owner = "libraries";
    repo = "mpvqt";
    rev = "v${version}";
    hash = "sha256-XHiCxH7dJxJamloM2SJbiFHDt8j4rVfv/M9PaBzvgM4=";
  };

  extraBuildInputs = [qtdeclarative];
  extraPropagatedBuildInputs = [mpv-unwrapped];

  meta.license = with lib.licenses; [bsd2 bsd3 cc-by-sa-40 cc0 lgpl21Only lgpl3Only lgpl3Plus mit];
}