mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
20 lines
971 B
Nix
20 lines
971 B
Nix
{ stdenv, fetchurl, gupnp, pkgconfig }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gupnp-av";
|
|
version = "0.12.4";
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/gupnp-av/0.12/gupnp-av-0.12.4.tar.xz;
|
|
sha256 = "0nvsvpiyfslz54j4hjh2gsdjkbi2qj2f4k0aw8s7f05kibprr2jl";
|
|
};
|
|
|
|
buildInputs = [ gupnp pkgconfig ];
|
|
|
|
meta = {
|
|
homepage = http://gupnp.org/;
|
|
description = "GUPnP-AV is a collection of helpers for building AV (audio/video) applications using GUPnP.";
|
|
longDescription = "GUPnP implements the UPnP specification: resource announcement and discovery, description, control, event notification, and presentation (GUPnP includes basic web server functionality through libsoup). GUPnP does not include helpers for construction or control of specific standardized resources (e.g. MediaServer); this is left for higher level libraries utilizing the GUPnP framework.";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
} |