summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-08-03 13:54:38 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-08-03 14:11:43 -0700
commit0392e9c8c6417e4a3cdf0db38b8ba6154203073f (patch)
tree95f326f9d977ecfdb1f17325e6ff2ae9b91b9441 /pkgs/development
parent68ba5ae1ef4cc6a9b724338528b6d8486f492f4c (diff)
downloadnixlib-0392e9c8c6417e4a3cdf0db38b8ba6154203073f.tar
nixlib-0392e9c8c6417e4a3cdf0db38b8ba6154203073f.tar.gz
nixlib-0392e9c8c6417e4a3cdf0db38b8ba6154203073f.tar.bz2
nixlib-0392e9c8c6417e4a3cdf0db38b8ba6154203073f.tar.lz
nixlib-0392e9c8c6417e4a3cdf0db38b8ba6154203073f.tar.xz
nixlib-0392e9c8c6417e4a3cdf0db38b8ba6154203073f.tar.zst
nixlib-0392e9c8c6417e4a3cdf0db38b8ba6154203073f.zip
gupnp-av: 0.12.4 -> 0.12.7
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/gupnp-av/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/libraries/gupnp-av/default.nix b/pkgs/development/libraries/gupnp-av/default.nix
index 2dcd5b11c386..789fdcd9c2a7 100644
--- a/pkgs/development/libraries/gupnp-av/default.nix
+++ b/pkgs/development/libraries/gupnp-av/default.nix
@@ -1,21 +1,22 @@
-{ stdenv, fetchurl, gupnp, pkgconfig }:
+{ stdenv, fetchurl, pkgconfig, gupnp, glib, libxml2 }:
 
 stdenv.mkDerivation rec {
   name = "gupnp-av-${version}";
   majorVersion = "0.12";
-  version = "${majorVersion}.4";
+  version = "${majorVersion}.7";
+
   src = fetchurl {
-    url = "mirror://gnome/sources/gupnp-av/${majorVersion}/gupnp-av-${version}.tar.xz";
-    sha256 = "0nvsvpiyfslz54j4hjh2gsdjkbi2qj2f4k0aw8s7f05kibprr2jl";
+    url = "mirror://gnome/sources/gupnp-av/${majorVersion}/${name}.tar.xz";
+    sha256 = "35e775bc4f7801d65dcb710905a6b8420ce751a239b5651e6d830615dc906ea8";
   };
   
-  buildInputs = [ gupnp pkgconfig ];
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ gupnp glib libxml2 ];
 
   meta = {
     homepage = http://gupnp.org/;
     description = "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
+}