Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
956 B
Nix
54 lines
956 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
cmake,
|
|
phonon,
|
|
pkg-config,
|
|
libvlc,
|
|
extra-cmake-modules,
|
|
qttools,
|
|
qtbase,
|
|
qtx11extras,
|
|
debug ? false,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "phonon-backend-vlc";
|
|
version = "0.11.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/phonon/${pname}/${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-Xmn97MsGDH5rWSTO8uZb7loIrOQScAW5U0TtMHfcY5c=";
|
|
};
|
|
|
|
buildInputs = [
|
|
phonon
|
|
libvlc
|
|
qtbase
|
|
qtx11extras
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
qttools
|
|
extra-cmake-modules
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
cmakeBuildType = if debug then "Debug" else "Release";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://community.kde.org/Phonon";
|
|
# Dev repo is at https://invent.kde.org/libraries/phonon-vlc
|
|
description = "GStreamer backend for Phonon";
|
|
platforms = platforms.linux;
|
|
license = with licenses; [
|
|
bsd3
|
|
lgpl21Plus
|
|
];
|
|
};
|
|
}
|