mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
add gssdp and gupnp, some Universal Plug and Play thingies
svn path=/nixpkgs/trunk/; revision=12149
This commit is contained in:
parent
7bf0c5ba01
commit
7ab5540a4a
|
@ -1,10 +1,10 @@
|
|||
{stdenv, fetchurl, pkgconfig, libsoup, glib, libxml2}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gssdp-0.4.2";
|
||||
name = "gssdp-0.6.1";
|
||||
src = fetchurl {
|
||||
url = http://www.gupnp.org/sources/gssdp/gssdp-0.4.2.tar.gz;
|
||||
sha256 = "0d4h494qkls3hl4cc8pjhlv34nwysa9bf7xsffbd59r4dxbqziwy";
|
||||
url = http://www.gupnp.org/sources/gssdp/gssdp-0.6.1.tar.gz;
|
||||
sha256 = "1mla3s0p4vabrn4m7il02f1d1ily3712fjw4k9l3x89rqyi2qh7f";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig libsoup glib libxml2];
|
||||
|
|
17
pkgs/development/libraries/gupnp/default.nix
Normal file
17
pkgs/development/libraries/gupnp/default.nix
Normal file
|
@ -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="";
|
||||
}
|
Loading…
Reference in a new issue