2019-01-27 03:45:52 -08:00
|
|
|
{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, libxml2, gobject-introspection, gnome3 }:
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-25 14:27:49 -08:00
|
|
|
pname = "totem-pl-parser";
|
2019-01-26 20:37:51 -08:00
|
|
|
version = "3.26.2";
|
2018-02-25 12:07:20 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-25 14:27:49 -08:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-01-26 20:37:51 -08:00
|
|
|
sha256 = "0fhwhrq5p0a8arh3lzk5bfjlkip3rlna9r6ybpi9fid4cpwsr1nk";
|
2018-02-25 12:07:20 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
2018-12-25 14:27:49 -08:00
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
2018-02-25 12:07:20 -08:00
|
|
|
};
|
2016-09-18 12:35:23 -07:00
|
|
|
|
2018-12-02 03:41:15 -08:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext gobject-introspection ];
|
2019-01-27 03:45:52 -08:00
|
|
|
buildInputs = [ libxml2 ];
|
2016-09-18 12:35:23 -07: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;
|
|
|
|
};
|
|
|
|
}
|