2018-07-17 21:11:16 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gobjectIntrospection, gupnp, gst-plugins-base }:
|
2017-08-30 23:21:50 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gupnp-dlna-${version}";
|
|
|
|
majorVersion = "0.10";
|
|
|
|
version = "${majorVersion}.5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gupnp-dlna/${majorVersion}/${name}.tar.xz";
|
|
|
|
sha256 = "0spzd2saax7w776p5laixdam6d7smyynr9qszhbmq7f14y13cghj";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
|
2018-07-17 21:11:16 +01:00
|
|
|
buildInputs = [ gupnp gst-plugins-base ];
|
2017-08-30 23:21:50 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://wiki.gnome.org/Projects/GUPnP/;
|
|
|
|
description = "Library to ease DLNA-related bits for applications using GUPnP";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|