nixpkgs/pkgs/development/libraries/gupnp-igd/default.nix

30 lines
854 B
Nix
Raw Normal View History

2018-09-07 18:07:59 -07:00
{ stdenv, fetchurl, pkgconfig, gettext, gobjectIntrospection, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, gupnp }:
stdenv.mkDerivation rec {
2015-08-03 13:49:57 -07:00
name = "gupnp-igd-${version}";
2018-09-07 18:07:59 -07:00
version = "0.2.5";
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
2018-09-07 18:07:59 -07:00
url = "mirror://gnome/sources/gupnp-igd/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "081v1vhkbz3wayv49xfiskvrmvnpx93k25am2wnarg5cifiiljlb";
};
2018-09-07 18:07:59 -07:00
nativeBuildInputs = [ pkgconfig gettext gobjectIntrospection gtk-doc docbook_xsl docbook_xml_dtd_412 ];
2015-08-03 13:49:57 -07:00
propagatedBuildInputs = [ glib gupnp ];
2018-09-07 18:07:59 -07:00
configureFlags = [
"--enable-gtk-doc"
];
doCheck = true;
meta = with stdenv.lib; {
description = "Library to handle UPnP IGD port mapping";
homepage = http://www.gupnp.org/;
2018-09-07 18:07:59 -07:00
license = licenses.lgpl21;
platforms = platforms.linux;
};
}