Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
917 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
stdenv,
lib,
fetchFromGitLab,
cmake,
extra-cmake-modules,
libvlc,
libv4l,
libX11,
kidletime,
kdelibs4support,
libXScrnSaver,
wrapQtAppsHook,
qtx11extras,
}:
stdenv.mkDerivation rec {
pname = "kaffeine";
version = "2.0.19";
src = fetchFromGitLab {
domain = "invent.kde.org";
repo = "kaffeine";
owner = "Multimedia";
rev = "v${version}";
hash = "sha256-AHyUS2vyeuWFLRXdIoy1sbssDgzz7N957vyf5rWiooI=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
wrapQtAppsHook
];
buildInputs = [
libvlc
libv4l
libX11
kidletime
qtx11extras
kdelibs4support
libXScrnSaver
];
meta = with lib; {
description = "KDE media player";
homepage = "https://apps.kde.org/kaffeine/";
license = licenses.gpl2;
maintainers = [ maintainers.pasqui23 ];
platforms = platforms.all;
mainProgram = "kaffeine";
};
}