1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

gns3-gui,gns3-server: remove with lib; notation

This commit is contained in:
Anthony Roussel 2024-07-12 22:52:31 +02:00 committed by Anthony ROUSSEL
parent a3c8723d2b
commit 7694000762
2 changed files with 8 additions and 8 deletions

View file

@ -66,7 +66,7 @@ python3Packages.buildPythonApplication rec {
command = "${lib.getExe gns3-gui} --version";
};
meta = with lib; {
meta = {
description = "Graphical Network Simulator 3 GUI (${channel} release)";
longDescription = ''
Graphical user interface for controlling the GNS3 network simulator. This
@ -75,9 +75,9 @@ python3Packages.buildPythonApplication rec {
'';
homepage = "https://www.gns3.com/";
changelog = "https://github.com/GNS3/gns3-gui/releases/tag/v${version}";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ anthonyroussel ];
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ anthonyroussel ];
mainProgram = "gns3";
};
}

View file

@ -90,7 +90,7 @@ python3Packages.buildPythonApplication {
};
};
meta = with lib; {
meta = {
description = "Graphical Network Simulator 3 server (${channel} release)";
longDescription = ''
The GNS3 server manages emulators such as Dynamips, VirtualBox or
@ -99,9 +99,9 @@ python3Packages.buildPythonApplication {
'';
homepage = "https://www.gns3.com/";
changelog = "https://github.com/GNS3/gns3-server/releases/tag/v${version}";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ anthonyroussel ];
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ anthonyroussel ];
mainProgram = "gns3server";
};
}