nixpkgs/pkgs/development/libraries/gssdp/default.nix
Ryan Mulligan 4897346fd3 gssdp: 1.0.1 -> 1.0.2
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
2018-03-08 16:35:55 -08:00

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;
};
}