2025-07-24 13:55:40 +02:00

123 lines
2.5 KiB
Nix

{
stdenv,
fetchurl,
meson,
mesonEmulatorHook,
ninja,
gettext,
gtk-doc,
pkg-config,
vala,
networkmanager,
gnome,
isocodes,
libxml2,
docbook_xsl,
docbook_xml_dtd_43,
mobile-broadband-provider-info,
gobject-introspection,
gtk3,
withGtk4 ? false,
gtk4,
withGnome ? true,
gcr_4,
glib,
lib,
_experimental-update-script-combinators,
makeHardcodeGsettingsPatch,
}:
stdenv.mkDerivation rec {
pname = "libnma";
version = "1.10.6";
outputs = [
"out"
"dev"
"devdoc"
];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "U6b7KxkK03xZhsrtPpi+3nw8YCOZ7k+TyPwFQwPXbas=";
};
patches = [
# Needed for wingpanel-indicator-network and switchboard-plug-network
./hardcode-gsettings.patch
];
nativeBuildInputs = [
meson
ninja
gettext
pkg-config
gobject-introspection
gtk-doc
docbook_xsl
docbook_xml_dtd_43
libxml2
vala
]
++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
mesonEmulatorHook
];
buildInputs = [
gtk3
networkmanager
isocodes
mobile-broadband-provider-info
]
++ lib.optionals withGtk4 [
gtk4
]
++ lib.optionals withGnome [
# advanced certificate chooser
gcr_4
];
mesonFlags = [
"-Dgcr=${lib.boolToString withGnome}"
"-Dlibnma_gtk4=${lib.boolToString withGtk4}"
];
postPatch = ''
substituteInPlace src/nma-ws/nma-eap.c --subst-var-by \
NM_APPLET_GSETTINGS ${glib.makeSchemaPath "$out" "$name"}
'';
postInstall = ''
glib-compile-schemas $out/share/glib-2.0/schemas
'';
passthru = {
hardcodeGsettingsPatch = makeHardcodeGsettingsPatch {
schemaIdToVariableMapping = {
"org.gnome.nm-applet.eap" = "NM_APPLET_GSETTINGS";
};
inherit src;
};
updateScript =
let
updateSource = gnome.updateScript {
packageName = "libnma";
versionPolicy = "odd-unstable";
};
updateGsettingsPatch = _experimental-update-script-combinators.copyAttrOutputToFile "libnma.hardcodeGsettingsPatch" ./hardcode-gsettings.patch;
in
_experimental-update-script-combinators.sequence [
updateSource
updateGsettingsPatch
];
};
meta = with lib; {
homepage = "https://gitlab.gnome.org/GNOME/libnma";
description = "NetworkManager UI utilities (libnm version)";
license = licenses.gpl2Plus; # Mix of GPL and LPGL 2+
teams = [ teams.gnome ];
platforms = platforms.linux;
};
}