nixpkgs/pkgs/by-name/gu/gupnp-tools/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

63 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 rec {
pname = "gupnp-tools";
version = "0.12.1";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "U8+TEj85fo+PC46eQ2TIanUCpTNPTAvi4FSoJEeL1bo=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
gettext
wrapGAppsHook3
];
buildInputs = [
gupnp_1_6
libsoup_3
gssdp_1_6
gtk3
gupnp-av
gtksourceview4
];
# new libxml2 version
# TODO: can be dropped on next update
NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ];
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
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;
maintainers = teams.gnome.members;
platforms = platforms.unix;
};
}