nixpkgs/pkgs/development/libraries/gupnp/1.6.nix
Colin da269e3c82 gupnp_1_6: 1.6.4 -> 1.6.5
this fixes the build with meson 1.2.0, and nothing more:
- <https://gitlab.gnome.org/GNOME/gupnp/-/commits/gupnp-1.6.5>
2023-08-06 08:40:33 +00:00

73 lines
1.2 KiB
Nix

{ stdenv
, lib
, fetchurl
, meson
, ninja
, pkg-config
, gobject-introspection
, vala
, gi-docgen
, glib
, gssdp_1_6
, libsoup_3
, libxml2
, gnome
}:
stdenv.mkDerivation rec {
pname = "gupnp";
version = "1.6.5";
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/gupnp/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
hash = "sha256-Q33/lwFC6EBwh6iYVfcX4g0nydduBbTNUX32IcfYiM0=";
};
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
meson
ninja
pkg-config
gobject-introspection
vala
gi-docgen
];
propagatedBuildInputs = [
glib
gssdp_1_6
libsoup_3
libxml2
];
mesonFlags = [
"-Dgtk_doc=true"
];
doCheck = true;
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
passthru = {
updateScript = gnome.updateScript {
attrPath = "gupnp_1_6";
packageName = pname;
};
};
meta = with lib; {
homepage = "http://www.gupnp.org/";
description = "An implementation of the UPnP specification";
license = licenses.lgpl2Plus;
platforms = platforms.linux;
};
}