nixpkgs-suyu/pkgs/development/libraries/gssdp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
1.8 KiB
Nix
Raw Normal View History

2021-10-20 17:59:00 +02:00
{ stdenv
, lib
, fetchurl
, meson
, ninja
, pkg-config
, gobject-introspection
, vala
2021-10-20 17:59:00 +02:00
, gi-docgen
, python3
, libsoup
, glib
, gnome
, gssdp-tools
}:
2017-03-13 01:41:00 +01:00
stdenv.mkDerivation rec {
pname = "gssdp";
2021-10-20 17:59:00 +02:00
version = "1.4.0.1";
outputs = [ "out" "dev" ]
++ lib.optionals (stdenv.buildPlatform == stdenv.hostPlatform) [ "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/gssdp/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-10-20 17:59:00 +02:00
sha256 = "hnaEnVf7giuHKIVtut6/OGf4nuR6DsR6IARdAR9DFYI=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
gobject-introspection
vala
2021-10-20 17:59:00 +02:00
gi-docgen
python3
];
buildInputs = [
libsoup
];
propagatedBuildInputs = [
glib
];
mesonFlags = [
"-Dgtk_doc=${lib.boolToString (stdenv.buildPlatform == stdenv.hostPlatform)}"
2021-10-20 17:59:00 +02:00
"-Dsniffer=false"
"-Dintrospection=${lib.boolToString (stdenv.buildPlatform == stdenv.hostPlatform)}"
];
doCheck = true;
postFixup = lib.optionalString (stdenv.buildPlatform == stdenv.hostPlatform) ''
# Move developer documentation to devdoc output.
2021-10-20 17:59:00 +02:00
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
find -L "$out/share/doc" -type f -regex '.*\.devhelp2?' -print0 \
| while IFS= read -r -d ''' file; do
moveToOutput "$(dirname "''${file/"$out/"/}")" "$devdoc"
done
'';
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
};
tests = {
inherit gssdp-tools;
};
};
meta = with lib; {
description = "GObject-based API for handling resource discovery and announcement over SSDP";
homepage = "http://www.gupnp.org/";
license = licenses.lgpl2Plus;
2021-10-20 17:59:00 +02:00
maintainers = teams.gnome.members;
2017-03-13 01:41:00 +01:00
platforms = platforms.all;
};
}