python312Packages.google-cloud-artifact-registry: 1.12.0 -> 1.13.1 (#356480)
[NixPkgs.git] / pkgs / kde / misc / mpvqt / default.nix
blob9c3940af4660d033fd91032a5cca3fe7b4d1c14b
2   lib,
3   mkKdeDerivation,
4   fetchFromGitLab,
5   mpv-unwrapped,
6   qtdeclarative,
7 }:
8 mkKdeDerivation rec {
9   pname = "mpvqt";
10   version = "1.0.1";
12   src = fetchFromGitLab {
13     domain = "invent.kde.org";
14     owner = "libraries";
15     repo = "mpvqt";
16     rev = "v${version}";
17     hash = "sha256-baVTyz3sXfQC7NEO2VoN0bhXpgkKjclwrFN/CLsuoC0=";
18   };
20   extraBuildInputs = [ qtdeclarative ];
21   extraPropagatedBuildInputs = [ mpv-unwrapped ];
23   meta.license = with lib.licenses; [
24     bsd2
25     bsd3
26     cc-by-sa-40
27     cc0
28     lgpl21Only
29     lgpl3Only
30     lgpl3Plus
31     mit
32   ];