2018-06-14 17:14:52 +01:00
|
|
|
{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, gmime, libxml2, gobjectIntrospection, gnome3 }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 20:07:20 +00:00
|
|
|
name = "totem-pl-parser-${version}";
|
2018-06-14 17:14:52 +01:00
|
|
|
version = "3.26.1";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-05 01:12:11 +01:00
|
|
|
url = "mirror://gnome/sources/totem-pl-parser/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2018-06-14 17:14:52 +01:00
|
|
|
sha256 = "0k5pnka907invgds48d73c1xx1a366v5dcld3gr2l1dgmjwc9qka";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript { packageName = "totem-pl-parser"; attrPath = "gnome3.totem-pl-parser"; };
|
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-03-13 23:51:54 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext gobjectIntrospection ];
|
2018-06-14 17:14:52 +01:00
|
|
|
buildInputs = [ gmime libxml2 ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
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 = gnome3.maintainers;
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|