nixpkgs/pkgs/desktops/gnome-3/core/totem-pl-parser/default.nix

17 lines
548 B
Nix
Raw Normal View History

2017-10-04 14:50:14 -07:00
{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, gmime, libxml2, libsoup, gnome3 }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
2017-10-04 14:50:14 -07:00
nativeBuildInputs = [ meson ninja pkgconfig gettext ];
2017-09-17 07:45:40 -07:00
buildInputs = [ 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 = gnome3.maintainers;
license = licenses.lgpl2;
platforms = platforms.linux;
};
}