-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
libnma: init at 1.8.28 #82699
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
libnma: init at 1.8.28 #82699
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
2b77be7
libnma: init at 1.8.28
hedning f07bad3
networkmanagerapplet: format
hedning 50438bd
networkmanagerapplet: 1.8.24 -> 1.16.0
hedning 691ddf1
gnome3.gnome-control-center: use libnma
hedning ea4b4c4
gnome3.gnome-shell: use libnma
hedning ac7d843
pantheon.switchboard-plug-network: use libnma
hedning dd48e9b
networkmanager-openvpn: use libnma
hedning 5e19d8a
networkmanager-iodine: use libnma
hedning e2affc5
networkmanager_strongswan: use libnma
hedning f800083
networkmanager-vpnc: use libnma
hedning 59c82bc
networkmanager-fortisslvpn: use libnma
hedning f9f5ab3
networkmanager-l2tp: use libnma
hedning 31ffa73
pantheon.wingpanel-indicator-network: use libnma
hedning 142916e
cinnamon.cjs: remove networkmanagerapplet
hedning e0ec958
cinnamon.cinnamon-control-center: use libnma
hedning b6445d3
gnome3.gnome-initial-setup: use libnma
hedning File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,89 @@ | ||
| { stdenv | ||
| , fetchurl | ||
| , meson | ||
| , ninja | ||
| , gettext | ||
| , gtk-doc | ||
| , pkg-config | ||
| , vala | ||
| , networkmanager | ||
| , gnome3 | ||
| , isocodes | ||
| , libxml2 | ||
| , docbook_xsl | ||
| , docbook_xml_dtd_43 | ||
| , mobile-broadband-provider-info | ||
| , gobject-introspection | ||
| , gtk3 | ||
| , withGnome ? true | ||
| , gcr | ||
| , glib | ||
| , substituteAll | ||
| }: | ||
|
|
||
| stdenv.mkDerivation rec { | ||
| pname = "libnma"; | ||
| version = "1.8.28"; | ||
|
|
||
| outputs = [ "out" "dev" "devdoc" ]; | ||
|
|
||
| src = fetchurl { | ||
| url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; | ||
| sha256 = "09mp6k0hfam1vyyv9kcd8j4gb2r58i05ipx2nswb58ris599bxja"; | ||
| }; | ||
|
|
||
| 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 | ||
| ]; | ||
|
|
||
| buildInputs = [ | ||
| gtk3 | ||
| networkmanager | ||
| isocodes | ||
| mobile-broadband-provider-info | ||
| ] ++ stdenv.lib.optionals withGnome [ | ||
| # advanced certificate chooser | ||
| gcr | ||
| ]; | ||
|
|
||
| mesonFlags = [ | ||
| "-Dgcr=${if withGnome then "true" else "false"}" | ||
| ]; | ||
|
|
||
| postPatch = '' | ||
| substituteInPlace src/nma-ws/nma-eap.c --subst-var-by \ | ||
| NM_APPLET_GSETTINGS ${glib.makeSchemaPath "$out" "${pname}-${version}"} | ||
| ''; | ||
|
|
||
| postInstall = '' | ||
| glib-compile-schemas $out/share/glib-2.0/schemas | ||
| ''; | ||
|
|
||
| passthru = { | ||
| updateScript = gnome3.updateScript { | ||
| packageName = pname; | ||
| }; | ||
| }; | ||
|
|
||
| meta = with stdenv.lib; { | ||
| homepage = "https://gitlab.gnome.org/GNOME/libnma"; | ||
| description = "NetworkManager UI utilities (libnm version)"; | ||
| license = licenses.gpl2Plus; # Mix of GPL and LPGL 2+ | ||
| maintainers = teams.gnome.members; | ||
| platforms = platforms.linux; | ||
| }; | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.