summary refs log tree commit diff
path: root/pkgs/development/libraries/gupnp-av
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2014-01-11 13:28:12 +0100
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2014-01-30 18:58:59 +0100
commite5af7f79d55afaf4fcb49f0447eaa48517742a13 (patch)
treea3f12c7769ab36d5ccff2898d2563ef0e513b8a1 /pkgs/development/libraries/gupnp-av
parentcdd86c7875c7e31b69d1a859c0f8c6a9deb3266f (diff)
downloadnixpkgs-e5af7f79d55afaf4fcb49f0447eaa48517742a13.tar
nixpkgs-e5af7f79d55afaf4fcb49f0447eaa48517742a13.tar.gz
nixpkgs-e5af7f79d55afaf4fcb49f0447eaa48517742a13.tar.bz2
nixpkgs-e5af7f79d55afaf4fcb49f0447eaa48517742a13.tar.lz
nixpkgs-e5af7f79d55afaf4fcb49f0447eaa48517742a13.tar.xz
nixpkgs-e5af7f79d55afaf4fcb49f0447eaa48517742a13.tar.zst
nixpkgs-e5af7f79d55afaf4fcb49f0447eaa48517742a13.zip
gupnp-tools and releated packages: fix and update
Diffstat (limited to 'pkgs/development/libraries/gupnp-av')
-rw-r--r--pkgs/development/libraries/gupnp-av/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gupnp-av/default.nix b/pkgs/development/libraries/gupnp-av/default.nix
new file mode 100644
index 00000000000..ef78b4d185d
--- /dev/null
+++ b/pkgs/development/libraries/gupnp-av/default.nix
@@ -0,0 +1,20 @@
+{ 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;
+  };
+}
\ No newline at end of file