summary refs log tree commit diff
path: root/pkgs/development/libraries/gupnp
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2008-06-18 19:03:58 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2008-06-18 19:03:58 +0000
commit7ab5540a4a58dacea8f30b5256181e8dedf63205 (patch)
tree2db1f01ea3a2395bf8899f6a89d0778f5c22c9cd /pkgs/development/libraries/gupnp
parent7bf0c5ba012198ca529de76c215f5ef5ea474cb4 (diff)
downloadnixpkgs-7ab5540a4a58dacea8f30b5256181e8dedf63205.tar
nixpkgs-7ab5540a4a58dacea8f30b5256181e8dedf63205.tar.gz
nixpkgs-7ab5540a4a58dacea8f30b5256181e8dedf63205.tar.bz2
nixpkgs-7ab5540a4a58dacea8f30b5256181e8dedf63205.tar.lz
nixpkgs-7ab5540a4a58dacea8f30b5256181e8dedf63205.tar.xz
nixpkgs-7ab5540a4a58dacea8f30b5256181e8dedf63205.tar.zst
nixpkgs-7ab5540a4a58dacea8f30b5256181e8dedf63205.zip
add gssdp and gupnp, some Universal Plug and Play thingies
svn path=/nixpkgs/trunk/; revision=12149
Diffstat (limited to 'pkgs/development/libraries/gupnp')
-rw-r--r--pkgs/development/libraries/gupnp/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gupnp/default.nix b/pkgs/development/libraries/gupnp/default.nix
new file mode 100644
index 00000000000..cd77b5d6293
--- /dev/null
+++ b/pkgs/development/libraries/gupnp/default.nix
@@ -0,0 +1,17 @@
+args: with args;
+ 
+stdenv.mkDerivation {
+  name = "gupnp-0.12";
+
+  src = fetchurl {
+    url = http://www.gupnp.org/sources/gupnp/gupnp-0.12.tar.gz;
+    sha256 = "1sm1rqvx752nb3j1yl7h30kx2ymndkji8m73fxshjssmc6z40ayg";
+  };
+
+  buildInputs = [
+    pkgconfig glib libxml2 gssdp libsoup e2fsprogs
+ #dbus.libs dbus_glib gtk glib
+  ];
+
+  #configureFlags="";
+}