totem-pl-parser: new package

Simple GObject-based library to parse and save a host of playlist formats

https://wiki.gnome.org/Apps/Videos
This commit is contained in:
Luca Bruno 2014-04-06 12:47:17 +02:00
parent c70c038624
commit eca21f1926
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, file, intltool, gmime, libxml2, libsoup }:
stdenv.mkDerivation rec {
name = "totem-pl-parser-3.10.2";
src = fetchurl {
url = "mirror://gnome/sources/totem-pl-parser/3.10/${name}.tar.xz";
sha256 = "38be09bddc46ddecd2b5ed7c82144ef52aafe879a5ec3d8b192b4b64ba995469";
};
buildInputs = [ pkgconfig file intltool gmime libxml2 libsoup ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Videos;
description = "Simple GObject-based library to parse and save a host of playlist formats";
maintainers = with maintainers; [ lethalman ];
license = licenses.lgpl2;
platforms = platforms.linux;
};
}

View File

@ -108,6 +108,8 @@ rec {
rest = callPackage ./core/rest { };
totem-pl-parser = callPackage ./core/totem-pl-parser { };
vte = callPackage ./core/vte { };
vino = callPackage ./core/vino { };