nixpkgs/pkgs/applications/video/xplayer/plparser.nix

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

45 lines
783 B
Nix
Raw Normal View History

2021-02-03 21:41:54 +00:00
{ stdenv
, lib
, fetchFromGitHub
, meson
, ninja
2021-02-03 21:41:54 +00:00
, gobject-introspection
, gmime3
2021-02-03 21:41:54 +00:00
, libxml2
, libsoup
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "xplayer-plparser";
version = "1.0.3";
2021-02-03 21:41:54 +00:00
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
sha256 = "6GMKsIpyQdiyHPxrjWHAHvuCouJxrAcYPIo9u6TLOA4=";
2021-02-03 21:41:54 +00:00
};
nativeBuildInputs = [
meson
ninja
2021-02-03 21:41:54 +00:00
pkg-config
gobject-introspection
];
buildInputs = [
gmime3
2021-02-03 21:41:54 +00:00
libxml2
libsoup
];
meta = with lib; {
description = "Playlist parsing library for xplayer";
homepage = "https://github.com/linuxmint/xplayer-plparser";
maintainers = with maintainers; [ tu-maurice bobby285271 ];
2021-02-03 21:41:54 +00:00
license = licenses.lgpl2Plus;
platforms = platforms.linux;
};
}