nixpkgs/pkgs/tools/networking/gupnp-tools/default.nix

58 lines
1,002 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchurl
, meson
, ninja
, gupnp
, gssdp
2021-01-17 03:51:22 +00:00
, pkg-config
, gtk3
, libuuid
, gettext
, gupnp-av
, gtksourceview4
, gnome3
, wrapGAppsHook
}:
2018-03-22 23:40:54 +00:00
2018-12-14 19:29:49 +00:00
stdenv.mkDerivation rec {
2018-03-22 23:40:54 +00:00
pname = "gupnp-tools";
version = "0.10.0";
src = fetchurl {
2021-01-15 09:19:50 +00:00
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "13d1qr1avz9r76989nvgxhhclmqzr025xjk4rfnja94fpbspznj1";
};
nativeBuildInputs = [
meson
ninja
2021-01-17 03:51:22 +00:00
pkg-config
gettext
wrapGAppsHook
2018-12-14 19:29:49 +00:00
];
buildInputs = [
gupnp
libuuid
gssdp
gtk3
gupnp-av
gtksourceview4
gnome3.adwaita-icon-theme
];
2018-03-22 23:40:54 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
};
};
meta = with lib; {
2018-03-22 23:40:54 +00:00
description = "Set of utilities and demos to work with UPnP";
homepage = "https://wiki.gnome.org/Projects/GUPnP";
2018-03-22 23:40:54 +00:00
license = licenses.gpl2Plus;
maintainers = teams.gnome.members;
2018-03-22 23:40:54 +00:00
platforms = platforms.linux;
};
}