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
42 lines
743 B
Nix
42 lines
743 B
Nix
{
|
|
lib,
|
|
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
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
description = "Mpris2 Client for Plasma5";
|
|
homepage = "https://github.com/audoban/PlayBar2";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pjones ];
|
|
};
|
|
}
|