waylyrics: 0.3.16 -> 0.3.20 (#364626)
[NixPkgs.git] / pkgs / applications / audio / deadbeef / plugins / lyricbar.nix
blob3a6a705de5cb5992a6fca3115a5e6aaa1f7040d9
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   pkg-config,
6   deadbeef,
7   gtkmm3,
8   libxmlxx3,
9 }:
11 stdenv.mkDerivation {
12   pname = "deadbeef-lyricbar-plugin";
13   version = "unstable-2019-01-29";
15   src = fetchFromGitHub {
16     owner = "C0rn3j";
17     repo = "deadbeef-lyricbar";
18     rev = "8f99b92ef827c451c43fc7dff38ae4f15c355e8e";
19     sha256 = "108hx5530f4xm8p9m2bk79nq7jkhcj39ad3vmxb2y6h6l2zv5kwl";
20   };
22   nativeBuildInputs = [ pkg-config ];
23   buildInputs = [
24     deadbeef
25     gtkmm3
26     libxmlxx3
27   ];
29   buildFlags = [ "gtk3" ];
31   meta = with lib; {
32     description = "Plugin for DeaDBeeF audio player that fetches and shows the song’s lyrics";
33     homepage = "https://github.com/C0rn3j/deadbeef-lyricbar";
34     license = licenses.mit;
35     maintainers = [ maintainers.jtojnar ];
36     platforms = platforms.linux;
37   };