mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
gssdp: 0.14.11 -> 1.0.1
This commit is contained in:
parent
212efab7ac
commit
b64c6b46b1
1 changed files with 8 additions and 7 deletions
|
@ -1,21 +1,22 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libsoup, glib }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gssdp-0.14.11";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gssdp-${version}";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://gnome/sources/gssdp/0.14/gssdp-0.14.11.tar.xz;
|
||||
sha256 = "0njkqr2y7c6linnw4wkc4y2vq5dfkpryqcinbzn0pzhr46psxxbv";
|
||||
url = "mirror://gnome/sources/gssdp/1.0/${name}.tar.xz";
|
||||
sha256 = "1qfj4gir1qf6v86z70ryzmjb75ns30q6zi5p89vhd3621gs6f7b0";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libsoup ];
|
||||
propagatedBuildInputs = [ glib ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "GObject-based API for handling resource discovery and announcement over SSDP";
|
||||
homepage = http://www.gupnp.org/;
|
||||
license = stdenv.lib.licenses.lgpl2;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = licenses.lgpl2;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue