mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
43 lines
765 B
Nix
43 lines
765 B
Nix
{ 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;
|
|
};
|
|
}
|