mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
4897346fd3
Semi-automatic update. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.0.2 with grep in /nix/store/dyf9dj8j9nlhh3kv4zvg6aj85hw5k42n-gssdp-1.0.2 - found 1.0.2 in filename of file in /nix/store/dyf9dj8j9nlhh3kv4zvg6aj85hw5k42n-gssdp-1.0.2
23 lines
616 B
Nix
23 lines
616 B
Nix
{ stdenv, fetchurl, pkgconfig, libsoup, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gssdp-${version}";
|
|
version = "1.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gssdp/1.0/${name}.tar.xz";
|
|
sha256 = "1p1m2m3ndzr2whipqw4vfb6s6ia0g7rnzzc4pnq8b8g1qw4prqd1";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libsoup ];
|
|
propagatedBuildInputs = [ glib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GObject-based API for handling resource discovery and announcement over SSDP";
|
|
homepage = http://www.gupnp.org/;
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|