about summary refs log tree commit diff
path: root/pkgs/applications/video/xplayer/plparser.nix
blob: da3daa445f6a3e6d5ad3bb7ed951ba04eea4e03d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ stdenv
, lib
, fetchFromGitHub
, intltool
, gobject-introspection
, gmime
, libxml2
, libsoup
, pkg-config
}:

stdenv.mkDerivation rec {
  pname = "xplayer-plparser";
  version = "1.0.2";

  src = fetchFromGitHub {
    owner = "linuxmint";
    repo = pname;
    rev = version;
    sha256 = "1i7sld8am6b1wwbpfb18v7qp17vk2a5p8xcfds50yznr30lddsb2";
  };

  nativeBuildInputs = [
    intltool
    pkg-config
    gobject-introspection
  ];

  buildInputs = [
    gmime
    libxml2
    libsoup
  ];

  meta = with lib; {
    description = "Playlist parsing library for xplayer";
    homepage = "https://github.com/linuxmint/xplayer-plparser";
    maintainers = with maintainers; [ tu-maurice ];
    license = licenses.lgpl2Plus;
    platforms = platforms.linux;
  };
}