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
41 lines
874 B
Nix
41 lines
874 B
Nix
{
|
||
lib,
|
||
stdenv,
|
||
fetchFromGitHub,
|
||
pkg-config,
|
||
deadbeef,
|
||
gtkmm3,
|
||
libxmlxx3,
|
||
}:
|
||
|
||
stdenv.mkDerivation {
|
||
pname = "deadbeef-lyricbar-plugin";
|
||
version = "unstable-2019-01-29";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "C0rn3j";
|
||
repo = "deadbeef-lyricbar";
|
||
rev = "8f99b92ef827c451c43fc7dff38ae4f15c355e8e";
|
||
sha256 = "108hx5530f4xm8p9m2bk79nq7jkhcj39ad3vmxb2y6h6l2zv5kwl";
|
||
};
|
||
|
||
nativeBuildInputs = [ pkg-config ];
|
||
buildInputs = [
|
||
deadbeef
|
||
gtkmm3
|
||
libxmlxx3
|
||
];
|
||
|
||
NIX_CFLAGS_COMPILE = "-Wno-incompatible-pointer-types";
|
||
|
||
buildFlags = [ "gtk3" ];
|
||
|
||
meta = with lib; {
|
||
description = "Plugin for DeaDBeeF audio player that fetches and shows the song’s lyrics";
|
||
homepage = "https://github.com/C0rn3j/deadbeef-lyricbar";
|
||
license = licenses.mit;
|
||
maintainers = [ maintainers.jtojnar ];
|
||
platforms = platforms.linux;
|
||
};
|
||
}
|