Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
meson,
|
|
ninja,
|
|
gupnp_1_6,
|
|
libsoup_3,
|
|
gssdp_1_6,
|
|
pkg-config,
|
|
gtk3,
|
|
gettext,
|
|
gupnp-av,
|
|
gtksourceview4,
|
|
gnome,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gupnp-tools";
|
|
version = "0.12.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gupnp-tools/${lib.versions.majorMinor finalAttrs.version}/gupnp-tools-${finalAttrs.version}.tar.xz";
|
|
sha256 = "TJLy0aPUVOwfX7Be8IyjTfnHQ69kyLWWXDWITUbLAFw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gettext
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gupnp_1_6
|
|
libsoup_3
|
|
gssdp_1_6
|
|
gtk3
|
|
gupnp-av
|
|
gtksourceview4
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "gupnp-tools";
|
|
versionPolicy = "odd-unstable";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Set of utilities and demos to work with UPnP";
|
|
homepage = "https://gitlab.gnome.org/GNOME/gupnp-tools";
|
|
license = licenses.gpl2Plus;
|
|
teams = [ teams.gnome ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|